# HG changeset patch # User Juanma Barranquero # Date 1115291054 0 # Node ID c0b42702a33ae549516d9a6884e569e89f554689 # Parent 60c3c8765ba5eacf367b02a468634eb7b1c1c2e3 (ebrowse-install-1-to-9-keys, ebrowse-print-statistics-line, ebrowse-electric-position-mode-hook): Fix typo in docstring. diff -r 60c3c8765ba5 -r c0b42702a33a lisp/progmodes/ebrowse.el --- a/lisp/progmodes/ebrowse.el Thu May 05 09:18:53 2005 +0000 +++ b/lisp/progmodes/ebrowse.el Thu May 05 11:04:14 2005 +0000 @@ -3937,7 +3937,7 @@ (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 @@ (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 @@ (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)))