]> code.delx.au - gnu-emacs/commitdiff
Doc fix: _ chars are automatically removed.
authorLars Ingebrigtsen <larsi@gnus.org>
Thu, 28 Apr 2016 23:41:34 +0000 (01:41 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Thu, 28 Apr 2016 23:41:34 +0000 (01:41 +0200)
* lisp/cus-edit.el (custom-buffer-create): _ chars are
automatically removed when displaying help, so fix the last
doc change.
(custom-buffer-create-other-window): Ditto.

lisp/cus-edit.el

index cf98b60820375cbcbda44e6447a897bad9267674..ee0f14fe90e0afe2bb142bfb949ab2c61773ccf2 100644 (file)
@@ -1549,7 +1549,7 @@ Optional NAME is the name of the buffer.
 OPTIONS should be an alist of the form ((SYMBOL WIDGET)...), where
 SYMBOL is a customization option, and WIDGET is a widget for editing
 that option.
-_DESCRIPTION is unused."
+DESCRIPTION is unused."
   (pop-to-buffer-same-window
    (custom-get-fresh-buffer (or name "*Customization*")))
   (custom-buffer-create-internal options))
@@ -1562,7 +1562,7 @@ Optional NAME is the name of the buffer.
 OPTIONS should be an alist of the form ((SYMBOL WIDGET)...), where
 SYMBOL is a customization option, and WIDGET is a widget for editing
 that option.
-_DESCRIPTION is unused."
+DESCRIPTION is unused."
   (unless name (setq name "*Customization*"))
   (switch-to-buffer-other-window (custom-get-fresh-buffer name))
   (custom-buffer-create-internal options))