* 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.
(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
(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)
(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)))