]> git.eshelyaron.com Git - emacs.git/commitdiff
Correct the placement of c-cpp-delimiters when there're #s not at col 0.
authorAlan Mackenzie <acm@muc.de>
Mon, 15 Apr 2013 16:10:24 +0000 (16:10 +0000)
committerAlan Mackenzie <acm@muc.de>
Mon, 15 Apr 2013 16:10:24 +0000 (16:10 +0000)
        * progmodes/cc-langs.el (c-anchored-cpp-prefix): Reformulate and
        place a submatch around the #.
        * progmodes/cc-mode.el(c-neutralize-syntax-in-and-mark-CPP): Start
        a search at BOL.  Put the c-cpp-delimiter category text propertiy
        on the #, not BOL.

lisp/ChangeLog
lisp/progmodes/cc-langs.el
lisp/progmodes/cc-mode.el

index 2966af7e0bc3a01bdc8c342b966bec0a6b898db2..f366c1937af1e4780090d29d720ec836c7b844e4 100644 (file)
@@ -1,3 +1,14 @@
+2013-04-15  Alan Mackenzie  <acm@muc.de>
+
+       Correct the placement of c-cpp-delimiters when there're #s not at
+       col 0.
+
+       * progmodes/cc-langs.el (c-anchored-cpp-prefix): Reformulate and
+       place a submatch around the #.
+       * progmodes/cc-mode.el(c-neutralize-syntax-in-and-mark-CPP): Start
+       a search at BOL.  Put the c-cpp-delimiter category text propertiy
+       on the #, not BOL.
+
 2013-04-15  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * emacs-lisp/nadvice.el: Properly test names when adding advice.
index ba9c42e4c89f605eb2b8dd1081f6e127a0ddcd43..af52ad53aad23de410faa8928532dbea4b3eff1c 100644 (file)
@@ -812,8 +812,8 @@ Assumed to not contain any submatches or \\| operators."
 (c-lang-defconst c-anchored-cpp-prefix
   "Regexp matching the prefix of a cpp directive anchored to BOL,
 in the languages that have a macro preprocessor."
-  t (if (c-lang-const c-opt-cpp-prefix)
-       (concat "^" (c-lang-const c-opt-cpp-prefix))))
+  t "^\\s *\\(#\\)\\s *"
+  (java awk) nil)
 (c-lang-defvar c-anchored-cpp-prefix (c-lang-const c-anchored-cpp-prefix))
 
 (c-lang-defconst c-opt-cpp-start
index 3c3a5766582b6d921164e42cb84399064bb1811b..17e80b8b25b43a14264cecb1ddc1ef578134b248 100644 (file)
@@ -936,7 +936,8 @@ Note that the style variables are always made local to the buffer."
 
     ;; Add needed properties to each CPP construct in the region.
     (goto-char c-new-BEG)
-    (let ((pps-position c-new-BEG)  pps-state mbeg)
+    (skip-chars-backward " \t")
+    (let ((pps-position (point))  pps-state mbeg)
       (while (and (< (point) c-new-END)
                  (search-forward-regexp c-anchored-cpp-prefix c-new-END t))
        ;; If we've found a "#" inside a string/comment, ignore it.
@@ -945,14 +946,12 @@ Note that the style variables are always made local to the buffer."
              pps-position (point))
        (unless (or (nth 3 pps-state)   ; in a string?
                    (nth 4 pps-state))  ; in a comment?
-         (goto-char (match-beginning 0))
+         (goto-char (match-beginning 1))
          (setq mbeg (point))
          (if (> (c-syntactic-end-of-macro) mbeg)
              (progn
                (c-neutralize-CPP-line mbeg (point))
-               (c-set-cpp-delimiters mbeg (point))
-               ;(setq pps-position (point))
-               )
+               (c-set-cpp-delimiters mbeg (point)))
            (forward-line))           ; no infinite loop with, e.g., "#//"
          )))))