emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r106391: * autoconf.el (autoconf-mode


From: Chong Yidong
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r106391: * autoconf.el (autoconf-mode): Fix comment-start-skip regexp.
Date: Wed, 16 Nov 2011 11:17:29 +0800
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 106391
fixes bug(s): http://debbugs.gnu.org/10033
committer: Chong Yidong <address@hidden>
branch nick: trunk
timestamp: Wed 2011-11-16 11:17:29 +0800
message:
  * autoconf.el (autoconf-mode): Fix comment-start-skip regexp.
modified:
  lisp/ChangeLog
  lisp/emacs-lisp/eieio.el
  lisp/mail/rmail.el
  lisp/progmodes/autoconf.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2011-11-16 02:26:00 +0000
+++ b/lisp/ChangeLog    2011-11-16 03:17:29 +0000
@@ -1,3 +1,8 @@
+2011-11-16  Chong Yidong  <address@hidden>
+
+       * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip
+       regexp (Bug#10033).
+
 2011-11-16  Stefan Monnier  <address@hidden>
 
        * tmm.el (tmm-prompt): Use minibuffer-with-setup-hook (bug#10053).

=== modified file 'lisp/emacs-lisp/eieio.el'
--- a/lisp/emacs-lisp/eieio.el  2011-11-15 17:37:37 +0000
+++ b/lisp/emacs-lisp/eieio.el  2011-11-16 03:17:29 +0000
@@ -3051,7 +3051,7 @@
 
 ;;;### (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" "\

=== modified file 'lisp/mail/rmail.el'
--- a/lisp/mail/rmail.el        2011-11-15 11:23:14 +0000
+++ b/lisp/mail/rmail.el        2011-11-16 03:17:29 +0000
@@ -4494,27 +4494,29 @@
 
 ;;;***
 
-;;;### (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)
 
 ;;;***
 

=== modified file 'lisp/progmodes/autoconf.el'
--- a/lisp/progmodes/autoconf.el        2011-01-26 08:36:39 +0000
+++ b/lisp/progmodes/autoconf.el        2011-11-16 03:17:29 +0000
@@ -83,7 +83,8 @@
   (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)


reply via email to

[Prev in Thread] Current Thread [Next in Thread]