aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2010-04-05 22:05:47 +0200
committerJuanma Barranquero2010-04-05 22:05:47 +0200
commit6460e5342cb08578eb2fd22b086373bbc12a11d0 (patch)
tree5ea3cbbb57bff6fb1fb21663cee4fc64c5aaf697
parent309d5b43a7b65b5bda2e03067f8319845880ee54 (diff)
downloademacs-6460e5342cb08578eb2fd22b086373bbc12a11d0.tar.gz
emacs-6460e5342cb08578eb2fd22b086373bbc12a11d0.zip
lisp/help.el: Turn ChangeLog comment into source comment.
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/help.el1
2 files changed, 2 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 0d68b49a837..69e20017750 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,6 +1,6 @@
12010-04-05 Juanma Barranquero <lekktu@gmail.com> 12010-04-05 Juanma Barranquero <lekktu@gmail.com>
2 2
3 * help.el (describe-mode): Return nil (for IELM's sake). 3 * help.el (describe-mode): Return nil.
4 4
52010-04-04 John Wiegley <jwiegley@gmail.com> 52010-04-04 John Wiegley <jwiegley@gmail.com>
6 6
diff --git a/lisp/help.el b/lisp/help.el
index bde2bf2e9ae..5e4c4ebaf61 100644
--- a/lisp/help.el
+++ b/lisp/help.el
@@ -873,6 +873,7 @@ whose documentation describes the minor mode."
873 (add-text-properties start (point) '(face bold))))) 873 (add-text-properties start (point) '(face bold)))))
874 (princ " mode:\n") 874 (princ " mode:\n")
875 (princ (documentation major-mode))))) 875 (princ (documentation major-mode)))))
876 ;; For the sake of IELM and maybe others
876 nil) 877 nil)
877 878
878 879