# HG changeset patch # User Juanma Barranquero # Date 1231097560 0 # Node ID fa6fe6da548a9a4930ab527abd7159cd099e4d6d # Parent 02615af9ba7039de9c0baf64d9116e27a114eea0 * emacs-lisp/lisp-mode.el (emacs-lisp-mode, lisp-mode, lisp-interaction-mode): Add a blank line in the docstring before the keymap listing. diff -r 02615af9ba70 -r fa6fe6da548a lisp/ChangeLog --- a/lisp/ChangeLog Sun Jan 04 19:06:23 2009 +0000 +++ b/lisp/ChangeLog Sun Jan 04 19:32:40 2009 +0000 @@ -1,3 +1,9 @@ +2009-01-04 Juanma Barranquero + + * emacs-lisp/lisp-mode.el (emacs-lisp-mode, lisp-mode) + (lisp-interaction-mode): Add a blank line in the docstring + before the keymap listing. + 2009-01-04 Martin Rudalics * window.el (display-buffer): When a buffer is displayed in the diff -r 02615af9ba70 -r fa6fe6da548a lisp/emacs-lisp/lisp-mode.el --- a/lisp/emacs-lisp/lisp-mode.el Sun Jan 04 19:06:23 2009 +0000 +++ b/lisp/emacs-lisp/lisp-mode.el Sun Jan 04 19:32:40 2009 +0000 @@ -416,6 +416,7 @@ Commands: Delete converts tabs to spaces as it moves back. Blank lines separate paragraphs. Semicolons start comments. + \\{emacs-lisp-mode-map} Entry to this mode calls the value of `emacs-lisp-mode-hook' if that value is non-nil." @@ -455,6 +456,7 @@ Commands: Delete converts tabs to spaces as it moves back. Blank lines separate paragraphs. Semicolons start comments. + \\{lisp-mode-map} Note that `run-lisp' may be used either to start an inferior Lisp job or to switch back to an existing one. @@ -532,6 +534,7 @@ Delete converts tabs to spaces as it moves back. Paragraphs are separated only by blank lines. Semicolons start comments. + \\{lisp-interaction-mode-map} Entry to this mode calls the value of `lisp-interaction-mode-hook' if that value is non-nil.")