diff options
| author | Stefan Monnier | 2007-04-01 19:35:32 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2007-04-01 19:35:32 +0000 |
| commit | 8ae799ba73eecc636ce2b877d4bee1b90b634252 (patch) | |
| tree | 7153c8b7afd4ed83702414f8e204f4887ebceeb4 | |
| parent | 5605893d03d128a088eca3ea36af392bf7d111eb (diff) | |
| download | emacs-8ae799ba73eecc636ce2b877d4bee1b90b634252.tar.gz emacs-8ae799ba73eecc636ce2b877d4bee1b90b634252.zip | |
(lisp-fill-paragraph): Only obey emacs-lisp-docstring-fill-column in
emacs-lisp-mode.
| -rw-r--r-- | lisp/ChangeLog | 19 | ||||
| -rw-r--r-- | lisp/emacs-lisp/lisp-mode.el | 3 |
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 @@ | |||
| 1 | 2007-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 | |||
| 1 | 2007-04-01 Guanpeng Xu <herberteuler@hotmail.com> | 9 | 2007-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 | ||
| 13 | 2007-04-01 J.D. Smith <jdsmith@as.arizona.edu> | 20 | 2007-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 | ||
| 22 | 2007-03-31 Glenn Morris <rgm@gnu.org> | 29 | 2007-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)) |