]> git.eshelyaron.com Git - emacs.git/commitdiff
Backport fix to bug #18749 to Emacs-24 branch.
authorAlan Mackenzie <acm@muc.de>
Wed, 5 Nov 2014 18:38:51 +0000 (18:38 +0000)
committerAlan Mackenzie <acm@muc.de>
Wed, 5 Nov 2014 18:38:51 +0000 (18:38 +0000)
lisp/ChangeLog
lisp/progmodes/cc-engine.el

index 111f98b8d4e816eb300cfe3d167fd91ee4c7c6a8..b83459503b4f9ebfacb275456c3d8aa63bac79db 100644 (file)
@@ -1,3 +1,10 @@
+2014-10-18  Alan Mackenzie  <acm@muc.de>
+
+       Check that a "macro" found near point-min isn't a ## operator.
+       Fixes bug #18749.  Backported from trunk, 2014-11-05.
+       * progmodes/cc-engine.el (c-macro-is-genuine-p): New function.
+       (c-beginning-of-macro): Use the above new function.
+
 2014-11-05  Alan Mackenzie  <acm@muc.de>
 
        Fix wrong bound to c-font-lock-declarators.  Fixes bug #18948.
index f86e4b2c48a4e3fc985b9dfe0ffe8d19829d5b7f..3e14dd18397ce0517686b1b4e3dfe63b9896810c 100644 (file)
     (setq c-macro-cache-start-pos beg
          c-macro-cache-syntactic nil))))
 
+(defun c-macro-is-genuine-p ()
+  ;; Check that the ostensible CPP construct at point is a real one.  In
+  ;; particular, if point is on the first line of a narrowed buffer, make sure
+  ;; that the "#" isn't, say, the second character of a "##" operator.  Return
+  ;; t when the macro is real, nil otherwise.
+  (let ((here (point)))
+    (beginning-of-line)
+    (prog1
+       (if (and (eq (point) (point-min))
+                (/= (point) 1))
+           (save-restriction
+             (widen)
+             (beginning-of-line)
+             (and (looking-at c-anchored-cpp-prefix)
+                  (eq (match-beginning 1) here)))
+         t)
+      (goto-char here))))
+
 (defun c-beginning-of-macro (&optional lim)
   "Go to the beginning of a preprocessor directive.
 Leave point at the beginning of the directive and return t if in one,
@@ -278,7 +296,8 @@ comment at the start of cc-engine.el for more info."
            (forward-line -1))
          (back-to-indentation)
          (if (and (<= (point) here)
-                  (looking-at c-opt-cpp-start))
+                  (looking-at c-opt-cpp-start)
+                  (c-macro-is-genuine-p))
              (progn
                (setq c-macro-cache (cons (point) nil)
                      c-macro-cache-start-pos here)