diff options
author | Eli Zaretskii <eliz@gnu.org> | 2021-09-26 16:50:11 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2021-09-26 16:50:11 +0300 |
commit | 5b44e0511a881593eb62ff1648be37ac1c728ecc (patch) | |
tree | e8f8d198e3086445a4502299480a64e3942360e5 /lisp/cedet | |
parent | b8b1d8dee7e30415b057b7a45f288fda3601274f (diff) | |
download | emacs-5b44e0511a881593eb62ff1648be37ac1c728ecc.tar.gz emacs-5b44e0511a881593eb62ff1648be37ac1c728ecc.tar.bz2 emacs-5b44e0511a881593eb62ff1648be37ac1c728ecc.zip |
; Fix some recent fixes to doc strings
* lisp/whitespace.el (whitespace-empty-at-bob-regexp):
* lisp/vc/vc-dir.el (vc-dir-child-files-and-states):
* lisp/vc/vc-annotate.el
(vc-annotate-show-changeset-diff-revision-at-line):
* lisp/vc/ediff.el (ediff-merge-with-ancestor-command):
* lisp/gnus/nnvirtual.el (nnvirtual-update-xref-header)
(nnvirtual-map-article):
* lisp/emulation/viper-init.el (viper-ESC-keyseq-timeout):
* lisp/emulation/viper-cmd.el
(viper-set-parsing-style-toggling-macro):
* lisp/cedet/data-debug.el (data-debug-insert-hash-table-button):
"The first line of a doc string must be a complete sentence."
Also, fix some awkward wording in doc strings while at that.
Diffstat (limited to 'lisp/cedet')
-rw-r--r-- | lisp/cedet/data-debug.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/cedet/data-debug.el b/lisp/cedet/data-debug.el index 8f40a4db79d..d8d1364491f 100644 --- a/lisp/cedet/data-debug.el +++ b/lisp/cedet/data-debug.el @@ -413,8 +413,9 @@ PREBUTTONTEXT is some text between prefix and the stuff list button." ) (defun data-debug-insert-hash-table-button (hash-table prefix prebuttontext) - "Insert HASH-TABLE as expandable button with recursive prefix PREFIX and -PREBUTTONTEXT in front of the button text." + "Insert HASH-TABLE as expandable button, using PREFIX and PREBUTTONTEXT. +PREFIX is a recursive prefix and PREBUTTONTEXT is text to be inserted +in front of the button text." (let ((string (propertize (format "%s" hash-table) 'face 'font-lock-keyword-face))) (insert (propertize |