]> git.eshelyaron.com Git - emacs.git/commitdiff
* autoconf.el (autoconf-mode): Fix comment-start-skip regexp.
authorChong Yidong <cyd@gnu.org>
Wed, 16 Nov 2011 03:17:29 +0000 (11:17 +0800)
committerChong Yidong <cyd@gnu.org>
Wed, 16 Nov 2011 03:17:29 +0000 (11:17 +0800)
Fixes: debbugs:10033
lisp/ChangeLog
lisp/emacs-lisp/eieio.el
lisp/mail/rmail.el
lisp/progmodes/autoconf.el

index 27dd6689746394493c9cbc914d4a05c9fea009c6..e4a9be99d5c4c4de3601f78f0f356f84bcbd2a64 100644 (file)
@@ -1,3 +1,8 @@
+2011-11-16  Chong Yidong  <cyd@gnu.org>
+
+       * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip
+       regexp (Bug#10033).
+
 2011-11-16  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * tmm.el (tmm-prompt): Use minibuffer-with-setup-hook (bug#10053).
index 62325d5190290dc9b1dde870e5a3a6e6a3c76cf7..5e29a85d386bfa6f644d480cd7d316aced711e65 100644 (file)
@@ -3051,7 +3051,7 @@ Optional argument GROUP is the sub-group of slots to display.
 \f
 ;;;### (autoloads (eieio-help-mode-augmentation-maybee eieio-describe-generic
 ;;;;;;  eieio-describe-constructor eieio-describe-class eieio-browse)
-;;;;;;  "eieio-opt" "eieio-opt.el" "1bed0a56310f402683419139ebc18d7f")
+;;;;;;  "eieio-opt" "eieio-opt.el" "4fb6625c3a007438aab4e8e77b6c73c2")
 ;;; Generated autoloads from eieio-opt.el
 
 (autoload 'eieio-browse "eieio-opt" "\
index 50d226978b4104d2711d23b62d9e8828e5559bd5..786003e693f740f116c7b0f5fe8e0a6c4f4afa05 100644 (file)
@@ -4494,27 +4494,29 @@ With prefix argument N moves forward N messages with these labels.
 
 ;;;***
 \f
-;;;### (autoloads (rmail-mime) "rmailmm" "rmailmm.el" "a79f498959deded8fa9d88a7dca93bc0")
+;;;### (autoloads (rmail-mime) "rmailmm" "rmailmm.el" "6296f0170a37670c49a88a1b92d78187")
 ;;; Generated autoloads from rmailmm.el
 
 (autoload 'rmail-mime "rmailmm" "\
-Toggle displaying of a MIME message.
+Toggle the display of a MIME message.
 
 The actual behavior depends on the value of `rmail-enable-mime'.
 
-If `rmail-enable-mime' is non-nil (default), this command changes the
-display of a MIME message between decoded presentation form and raw data.
-
-With ARG, toggle the display of the current MIME entity only.
-
-If `rmail-enable-mime' is nil, this creates a temporary
-\"*RMAIL*\" buffer holding a decoded copy of the message.  Inline
-content-types are handled according to
-`rmail-mime-media-type-handlers-alist'.  By default, this
-displays text and multipart messages, and offers to download
-attachments as specified by `rmail-mime-attachment-dirs-alist'.
-
-\(fn &optional ARG)" t nil)
+If `rmail-enable-mime' is non-nil (the default), this command toggles
+the display of a MIME message between decoded presentation form and
+raw data.  With optional prefix argument ARG, it toggles the display only
+of the MIME entity at point, if there is one.  The optional argument
+STATE forces a particular display state, rather than toggling.
+`raw' forces raw mode, any other non-nil value forces decoded mode.
+
+If `rmail-enable-mime' is nil, this creates a temporary \"*RMAIL*\"
+buffer holding a decoded copy of the message. Inline content-types are
+handled according to `rmail-mime-media-type-handlers-alist'.
+By default, this displays text and multipart messages, and offers to
+download attachments as specified by `rmail-mime-attachment-dirs-alist'.
+The arguments ARG and STATE have no effect in this case.
+
+\(fn &optional ARG STATE)" t nil)
 
 ;;;***
 \f
index 3aa9a6cfb87aa1e461e1a8b8c3842a86d2767974..fce725c3b3c6295167c2e7de3265b7fe4720ba88 100644 (file)
@@ -83,7 +83,8 @@ searching backwards at another AC_... command."
   (set (make-local-variable 'defun-prompt-regexp)
        "^[ \t]*A[CM]_\\(\\sw\\|\\s_\\)+")
   (set (make-local-variable 'comment-start) "dnl ")
-  (set (make-local-variable 'comment-start-skip) "\\(?:\\<dnl\\|#\\) +")
+  (set (make-local-variable 'comment-start-skip)
+       "\\(?:\\(\\W\\|\\`\\)dnl\\|#\\) +")
   (set (make-local-variable 'syntax-propertize-function)
        (syntax-propertize-rules ("\\<dnl\\>" (0 "<"))))
   (set (make-local-variable 'font-lock-defaults)