diff options
| author | Stefan Monnier | 2004-03-04 19:57:45 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2004-03-04 19:57:45 +0000 |
| commit | 769996d3748cf4db21892015b6df1411973cdb85 (patch) | |
| tree | ffc0000f1d50bc7ebcca5b98928ef55a5b619c81 | |
| parent | 2720770c5821135393676ef26924a20afac340cd (diff) | |
| download | emacs-769996d3748cf4db21892015b6df1411973cdb85.tar.gz emacs-769996d3748cf4db21892015b6df1411973cdb85.zip | |
(message-mode): Set comment-start-skip.
| -rw-r--r-- | lisp/gnus/ChangeLog | 11 | ||||
| -rw-r--r-- | lisp/gnus/message.el | 4 |
2 files changed, 10 insertions, 5 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 60679f8250a..7fa3fb61ce5 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2004-03-04 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * message.el (message-mode): Set comment-start-skip. | ||
| 4 | |||
| 1 | 2004-02-08 Andreas Schwab <schwab@suse.de> | 5 | 2004-02-08 Andreas Schwab <schwab@suse.de> |
| 2 | 6 | ||
| 3 | * nnlistserv.el (nnlistserv-kk-wash-article): Fix paren nesting. | 7 | * nnlistserv.el (nnlistserv-kk-wash-article): Fix paren nesting. |
| @@ -30,8 +34,8 @@ | |||
| 30 | 34 | ||
| 31 | 2003-05-06 Jesper Harder <harder@ifa.au.dk> | 35 | 2003-05-06 Jesper Harder <harder@ifa.au.dk> |
| 32 | 36 | ||
| 33 | * gnus-cus.el (gnus-group-customize, gnus-score-parameters): Don't | 37 | * gnus-cus.el (gnus-group-customize, gnus-score-parameters): |
| 34 | quote nil and t in docstrings. | 38 | Don't quote nil and t in docstrings. |
| 35 | 39 | ||
| 36 | * gnus-score.el (gnus-score-lower-thread): Likewise. | 40 | * gnus-score.el (gnus-score-lower-thread): Likewise. |
| 37 | 41 | ||
| @@ -47,8 +51,7 @@ | |||
| 47 | 51 | ||
| 48 | 2003-02-18 Juanma Barranquero <lektu@terra.es> | 52 | 2003-02-18 Juanma Barranquero <lektu@terra.es> |
| 49 | 53 | ||
| 50 | * ietf-drums.el (ietf-drums-remove-whitespace): Fix character | 54 | * ietf-drums.el (ietf-drums-remove-whitespace): Fix character constant. |
| 51 | constant. | ||
| 52 | 55 | ||
| 53 | 2003-02-14 Juanma Barranquero <lektu@terra.es> | 56 | 2003-02-14 Juanma Barranquero <lektu@terra.es> |
| 54 | 57 | ||
diff --git a/lisp/gnus/message.el b/lisp/gnus/message.el index 8edb5142ddd..874307383c2 100644 --- a/lisp/gnus/message.el +++ b/lisp/gnus/message.el | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | ;;; message.el --- composing mail and news messages -*- coding: iso-latin-1 -*- | 1 | ;;; message.el --- composing mail and news messages -*- coding: iso-latin-1 -*- |
| 2 | ;; Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002 | 2 | ;; Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2004 |
| 3 | ;; Free Software Foundation, Inc. | 3 | ;; Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org> | 5 | ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org> |
| @@ -1532,6 +1532,8 @@ M-RET `message-newline-and-reformat' (break the line and reformat)." | |||
| 1532 | (message-setup-fill-variables) | 1532 | (message-setup-fill-variables) |
| 1533 | ;; Allow using comment commands to add/remove quoting. | 1533 | ;; Allow using comment commands to add/remove quoting. |
| 1534 | (set (make-local-variable 'comment-start) message-yank-prefix) | 1534 | (set (make-local-variable 'comment-start) message-yank-prefix) |
| 1535 | (set (make-local-variable 'comment-start-skip) | ||
| 1536 | (concat "^" (regexp-quote message-yank-prefix) "[ \t]*")) | ||
| 1535 | ;;(when (fboundp 'mail-hist-define-keys) | 1537 | ;;(when (fboundp 'mail-hist-define-keys) |
| 1536 | ;; (mail-hist-define-keys)) | 1538 | ;; (mail-hist-define-keys)) |
| 1537 | (if (featurep 'xemacs) | 1539 | (if (featurep 'xemacs) |