From: Juanma Barranquero Date: Thu, 5 May 2005 11:04:51 +0000 (+0000) Subject: (ebrowse-install-1-to-9-keys, ebrowse-print-statistics-line, X-Git-Tag: ttn-vms-21-2-B4~533 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1c1d2dc88a253f204969a6a7ab8a4f9b74f91143;p=emacs.git (ebrowse-install-1-to-9-keys, ebrowse-print-statistics-line, ebrowse-electric-position-mode-hook): Fix typo in docstring. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 291598c6ca6..e888712a4c2 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -3,6 +3,10 @@ * emacs-lisp/byte-run.el (define-obsolete-function-alias): Fix typo in docstring. + * progmodes/ebrowse.el (ebrowse-install-1-to-9-keys) + (ebrowse-print-statistics-line) + (ebrowse-electric-position-mode-hook): Fix typo in docstring. + * term/w32-win.el (image-library-alist): Add additional name for Xpm library. diff --git a/lisp/progmodes/ebrowse.el b/lisp/progmodes/ebrowse.el index ac8ab28d92a..457c00d9008 100644 --- a/lisp/progmodes/ebrowse.el +++ b/lisp/progmodes/ebrowse.el @@ -3937,7 +3937,7 @@ Prefix arg ARG says how much." (defvar ebrowse-electric-position-mode-hook nil - "If non-nil, its value is called by ebrowse-electric-position-mode.") + "If non-nil, its value is called by `ebrowse-electric-position-mode'.") (unless ebrowse-electric-position-mode-map @@ -4185,7 +4185,7 @@ Otherwise, FILE-NAME specifies the file to save the tree in." (defun ebrowse-print-statistics-line (title value) "Print a line in the statistics buffer. -TITLE is the title of the line, VALUE is number to be printed +TITLE is the title of the line, VALUE is a number to be printed after that." (insert title) (indent-to 40) @@ -4319,7 +4319,7 @@ NUMBER-OF-STATIC-VARIABLES:" (defun ebrowse-install-1-to-9-keys () - "Define keys 1..9 to select the 1st to 0nth entry in the list." + "Define keys 1..9 to select the 1st to 9nth entry in the list." (dotimes (i 9) (define-key (current-local-map) (char-to-string (+ i ?1)) 'ebrowse-select-1st-to-9nth)))