/[emacs]/emacs/lisp/progmodes/cc-engine.el
ViewVC logotype

Diff of /emacs/lisp/progmodes/cc-engine.el

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.24 by mast, Sat May 25 16:17:27 2002 UTC revision 1.25 by sds, Thu Jul 25 13:23:27 2002 UTC
# Line 1794  brace." Line 1794  brace."
1794                search-end (nth 0 paren-state)))                search-end (nth 0 paren-state)))
1795        ;; if search-end is nil, or if the search-end character isn't an        ;; if search-end is nil, or if the search-end character isn't an
1796        ;; open brace, we are definitely not in a class        ;; open brace, we are definitely not in a class
1797        (if (or (not search-end)        (when (consp search-end)
1798                (< search-end (point-min))          (setq search-end (car search-end)))
1799                (not (eq (char-after search-end) ?{)))        (unless (or (not search-end)
1800            nil                    (< search-end (point-min))
1801                      (not (eq (char-after search-end) ?{)))
1802          ;; now, we need to look more closely at search-start.  if          ;; now, we need to look more closely at search-start.  if
1803          ;; search-start is nil, then our start boundary is really          ;; search-start is nil, then our start boundary is really
1804          ;; point-min.          ;; point-min.

Legend:
Removed from v.1.24  
changed lines
  Added in v.1.25

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26