]> code.delx.au - gnu-emacs/commitdiff
Merge from origin/emacs-24
authorPaul Eggert <eggert@cs.ucla.edu>
Sat, 4 Apr 2015 22:02:09 +0000 (15:02 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Sat, 4 Apr 2015 22:02:09 +0000 (15:02 -0700)
21d4bf6 * admin/make-tarball.txt: Copyedits.
f3b70a7 ; ChangeLog fix
07432a8 Revert "CC Mode: Stop Font Lock forcing fontification from BOL."

Conflicts:
lisp/ChangeLog

admin/make-tarball.txt
lisp/ChangeLog
lisp/progmodes/cc-mode.el

index 8f8b031ba2f46b03504eab0bf5df01cd88af889b..e902b023f80394def78dd909357a0835aba2c67e 100644 (file)
@@ -52,9 +52,11 @@ General steps (for each step, check for possible errors):
     number to that of the actual release.  Pick a date about a week
     from now when you intend to make the release.  Use M-x add-release-logs
     to add the ChangeLog entries for that date to the tar file (but
-    not yet to the repository).  Name the tar file as
-    emacs-XX.Y-rc1.tar.  If all goes well in the following week, you
-    can simply rename the file and use it for the actual release.
+    do not commit the entries to the repository until the actual release).
+    Name the tar file as emacs-XX.Y-rc1.tar.  If all goes well in the
+    following week, you can simply rename the file and use it for the
+    actual release.  If you need another release candidate, remember
+    to adjust the ChangeLog entries.
 
 4.   autoreconf -i -I m4 --force
      make bootstrap
index 11abda5afe60adccc0a5c99add4e120f82696d6f..694b34691de369ddb5a69a9f0923c7b4409af3cf 100644 (file)
@@ -1,3 +1,8 @@
+2015-04-04  Alan Mackenzie  <acm@muc.de>
+
+       * progmodes/cc-mode.el (c-font-lock-init): Revert 2015-02-01 change
+       "Stop Font Lock forcing fontification from BOL."  (Bug#20245)
+
 2015-04-04  Artur Malabarba  <bruce.connor.am@gmail.com>
 
        * emacs-lisp/package.el (package--download-and-read-archives): Add
index d88fe702c59451cb30548f541e1b551a1804c7ac..42ee14072d84048fb76815a6c32992cabdd4f126 100644 (file)
@@ -1302,14 +1302,6 @@ This function is called from `c-common-init', once per mode initialization."
          (font-lock-mark-block-function
           . c-mark-function)))
 
-  ;; Prevent `font-lock-default-fontify-region' extending the region it will
-  ;; fontify to whole lines by removing `font-lock-extend-region-whole-lines'
-  ;; (and, coincidentally, `font-lock-extend-region-multiline' (which we do
-  ;; not need)) from `font-lock-extend-region-functions'.  (Emacs only).  This
-  ;; fixes Emacs bug #19669.
-  (when (boundp 'font-lock-extend-region-functions)
-    (setq font-lock-extend-region-functions nil))
-
   (make-local-variable 'font-lock-fontify-region-function)
   (setq font-lock-fontify-region-function 'c-font-lock-fontify-region)