summaryrefslogtreecommitdiff
path: root/lisp/help-at-pt.el
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2009-04-14 21:54:49 +0000
committerJuanma Barranquero <lekktu@gmail.com>2009-04-14 21:54:49 +0000
commitade29c44f68b80ac67b1f767c8069bff941c772c (patch)
tree5abcecec7c8e1b13e04ba1329531b6debda186c6 /lisp/help-at-pt.el
parent6dea7173815b86572a4e61b40a6e917c2186ad40 (diff)
downloademacs-ade29c44f68b80ac67b1f767c8069bff941c772c.tar.gz
* help-at-pt.el (help-at-pt-kbd-string): Reflow docstring.
(scan-buf-previous-region): Fix typo in docstring.
Diffstat (limited to 'lisp/help-at-pt.el')
-rw-r--r--lisp/help-at-pt.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/help-at-pt.el b/lisp/help-at-pt.el
index f297552f870..d8125f3c323 100644
--- a/lisp/help-at-pt.el
+++ b/lisp/help-at-pt.el
@@ -73,8 +73,8 @@ can also be t, if that is the value of the `kbd-help' property."
(defun help-at-pt-kbd-string ()
"Return the keyboard help string at point.
If the `kbd-help' text or overlay property at point produces a
-string, return it. Otherwise, use the `help-echo' property. If
-this produces no string either, return nil."
+string, return it. Otherwise, use the `help-echo' property.
+If this produces no string either, return nil."
(let ((kbd (help-at-pt-string t))
(echo (help-at-pt-string)))
(if (and kbd (not (eq kbd t))) kbd echo)))
@@ -344,7 +344,7 @@ rarely happens in practice."
Print the help found there using `display-local-help'. Adjacent
areas with different non-nil help-echo properties are considered
different regions. With numeric argument ARG, behaves like
-`scan-buf-next-region' with argument -ARG.."
+`scan-buf-next-region' with argument -ARG."
(interactive "p")
(scan-buf-move-to-region 'help-echo (- arg) 'scan-buf-move-hook))