]> git.eshelyaron.com Git - emacs.git/commitdiff
Make CC Mode not hang when _some_ lines end in CRLF. Bug #11841.
authorAlan Mackenzie <acm@muc.de>
Tue, 11 Dec 2012 19:06:57 +0000 (19:06 +0000)
committerAlan Mackenzie <acm@muc.de>
Tue, 11 Dec 2012 19:06:57 +0000 (19:06 +0000)
cc-engine.el (c-backward-comments): Add code to work around
`forward-comment' not recognizing ^M as whitespace.

lisp/ChangeLog
lisp/progmodes/cc-engine.el

index c77cc286c76c1ccd68f758bfe3f579b65b96205f..fb75b3678c7ee0ff7f1574056fb5eee814f83a14 100644 (file)
@@ -1,3 +1,9 @@
+2012-12-11  Alan Mackenzie  <acm@muc.de>
+
+       Make CC Mode not hang when _some_ lines end in CRLF.  Bug #11841.
+       * progmodes/cc-engine.el (c-backward-comments): Add code to work
+       around `forward-comment' not recognizing ^M as whitespace.
+
 2012-12-11  Fabián Ezequiel Gallina  <fgallina@cuca>
 
        * progmodes/python.el (python-skeleton-class)
index 103554514809da733c54c945fde632333b4d422a..f7248e2d2d337f755c027c94494c10df836f1b6e 100644 (file)
@@ -1452,8 +1452,21 @@ comment at the start of cc-engine.el for more info."
            ;; return t when moving backwards at bob.
            (not (bobp))
 
-           (if (let (open-paren-in-column-0-is-defun-start)
-                 (forward-comment -1))
+           (if (let (open-paren-in-column-0-is-defun-start moved-comment)
+                 (while
+                     (and (not (setq moved-comment (forward-comment -1)))
+                     ;; Cope specifically with ^M^J here -
+                     ;; forward-comment sometimes gets stuck after ^Ms,
+                     ;; sometimes after ^M^J.
+                          (or
+                           (when (eq (char-before) ?\r)
+                             (backward-char)
+                             t)
+                           (when (and (eq (char-before) ?\n)
+                                      (eq (char-before (1- (point))) ?\r))
+                             (backward-char 2)
+                             t))))
+                 moved-comment)
                (if (looking-at "\\*/")
                    ;; Emacs <= 20 and XEmacs move back over the
                    ;; closer of a block comment that lacks an opener.