]> code.delx.au - gnu-emacs/commitdiff
Merge from emacs-23; up to 2010-06-13T18:15:45Z!eliz@gnu.org.
authorGlenn Morris <rgm@gnu.org>
Wed, 8 Jun 2011 07:17:26 +0000 (00:17 -0700)
committerGlenn Morris <rgm@gnu.org>
Wed, 8 Jun 2011 07:17:26 +0000 (00:17 -0700)
lisp/ChangeLog
lisp/loadhist.el
lisp/progmodes/flymake.el
lisp/repeat.el

index 614db7cf66c65ebdd321beeaefc00ea22652a508..00dd3ea11e5b206f0fbcd8fa9a8bc23b3ceef23d 100644 (file)
@@ -1,3 +1,17 @@
+2011-06-08  Reuben Thomas <rrt@sc3d.org>
+
+       * progmodes/flymake.el (flymake-compilation-prevents-syntax-check):
+       Doc fix (Bug#8713).
+
+2011-06-08  Chong Yidong  <cyd@stupidchicken.com>
+
+       * repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).
+
+2011-06-08  Juanma Barranquero  <lekktu@gmail.com>
+
+       * loadhist.el (unload-feature-special-hooks):
+       Add `comint-output-filter-functions'.
+
 2011-06-08  Ivan Kanis  <gnu@kanis.fr>
 
        * calendar/appt.el (appt-check): Move some initializations into the let.
index 3395c41d2fffc5adde15fa8d6eab1b4be45d9157..8e00c33cd815070e4de2d73aa2f278cab1b13c9e 100644 (file)
@@ -117,16 +117,16 @@ from a file."
   '(after-change-functions after-insert-file-functions
     after-make-frame-functions auto-fill-function before-change-functions
     blink-paren-function buffer-access-fontify-functions
-    choose-completion-string-functions command-line-functions
-    comment-indent-function compilation-finish-functions delete-frame-functions
-    disabled-command-function find-file-not-found-functions
-    font-lock-beginning-of-syntax-function font-lock-fontify-buffer-function
-    font-lock-fontify-region-function font-lock-mark-block-function
-    font-lock-syntactic-face-function font-lock-unfontify-buffer-function
-    font-lock-unfontify-region-function kill-buffer-query-functions
-    kill-emacs-query-functions lisp-indent-function mouse-position-function
-    redisplay-end-trigger-functions suspend-tty-functions
-    temp-buffer-show-function window-scroll-functions
+    choose-completion-string-functions comint-output-filter-functions
+    command-line-functions comment-indent-function compilation-finish-functions
+    delete-frame-functions disabled-command-function
+    find-file-not-found-functions font-lock-beginning-of-syntax-function
+    font-lock-fontify-buffer-function font-lock-fontify-region-function
+    font-lock-mark-block-function font-lock-syntactic-face-function
+    font-lock-unfontify-buffer-function font-lock-unfontify-region-function
+    kill-buffer-query-functions kill-emacs-query-functions lisp-indent-function
+    mouse-position-function redisplaylay-end-trigger-functions
+    suspend-tty-functions temp-buffer-show-function window-scroll-functions
     window-size-change-functions write-contents-functions write-file-functions
     write-region-annotate-functions)
   "A list of special hooks from Info node `(elisp)Standard Hooks'.
index 6200591fbbb31fb0d48cfe08113c29eb71a986d4..c01086c970e51e71856ed30d38642ff1e0d4afc3 100644 (file)
@@ -1118,7 +1118,7 @@ For the format of LINE-ERR-INFO, see `flymake-ler-make-ler'."
      (flymake-log 1 "Failed to delete dir %s, error ignored" dir-name))))
 
 (defcustom flymake-compilation-prevents-syntax-check t
-  "If non-nil, syntax check won't be started in case compilation is running."
+  "If non-nil, don't start syntax check if compilation is running."
   :group 'flymake
   :type 'boolean)
 
index b33039b609baac9b8222407b018d0a7bb650f05f..8bab8691b4f4456d5c884bad2e5ab96eed039005 100644 (file)
@@ -123,7 +123,9 @@ if `repeat' is bound to C-x z, typing C-x z z z repeats the previous command
 only occurs if the final character by which `repeat' was invoked is a
 member of that sequence.  If this variable is nil, no re-execution occurs."
   :group 'convenience
-  :type 'boolean)
+  :type '(choice (const :tag "Repeat for all keys" t)
+                (const :tag "Don't repeat" nil)
+                (sexp :tag "Repeat for specific keys")))
 
 ;;;;; ****************** HACKS TO THE REST OF EMACS ******************* ;;;;;