aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2007-04-01 19:35:32 +0000
committerStefan Monnier2007-04-01 19:35:32 +0000
commit8ae799ba73eecc636ce2b877d4bee1b90b634252 (patch)
tree7153c8b7afd4ed83702414f8e204f4887ebceeb4
parent5605893d03d128a088eca3ea36af392bf7d111eb (diff)
downloademacs-8ae799ba73eecc636ce2b877d4bee1b90b634252.tar.gz
emacs-8ae799ba73eecc636ce2b877d4bee1b90b634252.zip
(lisp-fill-paragraph): Only obey emacs-lisp-docstring-fill-column in
emacs-lisp-mode.
-rw-r--r--lisp/ChangeLog19
-rw-r--r--lisp/emacs-lisp/lisp-mode.el3
2 files changed, 15 insertions, 7 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 50ce561026e..f31cf647ada 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,11 @@
12007-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * emacs-lisp/lisp-mode.el (lisp-fill-paragraph): Only obey
4 emacs-lisp-docstring-fill-column in emacs-lisp-mode.
5
6 * newcomment.el (comment-search-forward): Discard comment starters
7 before point.
8
12007-04-01 Guanpeng Xu <herberteuler@hotmail.com> 92007-04-01 Guanpeng Xu <herberteuler@hotmail.com>
2 10
3 * mouse.el (mouse-set-secondary): Update mouse-secondary-overlay. 11 * mouse.el (mouse-set-secondary): Update mouse-secondary-overlay.
@@ -7,16 +15,15 @@
7 * mail/smtpmail.el (smtpmail-via-smtp): Use standard case table 15 * mail/smtpmail.el (smtpmail-via-smtp): Use standard case table
8 when downcasing. 16 when downcasing.
9 17
10 * button.el (previous-button): Rewrite to account for adjacent 18 * button.el (previous-button): Rewrite to account for adjacent buttons.
11 buttons.
12 19
132007-04-01 J.D. Smith <jdsmith@as.arizona.edu> 202007-04-01 J.D. Smith <jdsmith@as.arizona.edu>
14 21
15 * progmodes/idlwave.el (idlwave-auto-fill): Revert 22 * progmodes/idlwave.el (idlwave-auto-fill):
16 paragraph-separate change. 23 Revert paragraph-separate change.
17 24
18 * progmodes/idlw-shell.el (idlwave-shell-break-in): Simplify 25 * progmodes/idlw-shell.el (idlwave-shell-break-in):
19 module calc. 26 Simplify module calc.
20 (idlwave-shell-set-bp-in-module): Compute module. 27 (idlwave-shell-set-bp-in-module): Compute module.
21 28
222007-03-31 Glenn Morris <rgm@gnu.org> 292007-03-31 Glenn Morris <rgm@gnu.org>
diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el
index 09cb8436c89..164756dfdc3 100644
--- a/lisp/emacs-lisp/lisp-mode.el
+++ b/lisp/emacs-lisp/lisp-mode.el
@@ -1280,7 +1280,8 @@ and initial semicolons."
1280 "\\|\\s-*\\([(;:\"]\\|`(\\|#'(\\)")) 1280 "\\|\\s-*\\([(;:\"]\\|`(\\|#'(\\)"))
1281 (paragraph-separate 1281 (paragraph-separate
1282 (concat paragraph-separate "\\|\\s-*\".*[,\\.]$")) 1282 (concat paragraph-separate "\\|\\s-*\".*[,\\.]$"))
1283 (fill-column (if (integerp emacs-lisp-docstring-fill-column) 1283 (fill-column (if (and (integerp emacs-lisp-docstring-fill-column)
1284 (derived-mode-p 'emacs-lisp-mode))
1284 emacs-lisp-docstring-fill-column 1285 emacs-lisp-docstring-fill-column
1285 fill-column))) 1286 fill-column)))
1286 (fill-paragraph justify)) 1287 (fill-paragraph justify))