(ebrowse-install-1-to-9-keys, ebrowse-print-statistics-line,
authorJuanma Barranquero <lekktu@gmail.com>
Thu, 5 May 2005 11:04:51 +0000 (11:04 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Thu, 5 May 2005 11:04:51 +0000 (11:04 +0000)
ebrowse-electric-position-mode-hook): Fix typo in docstring.

lisp/ChangeLog
lisp/progmodes/ebrowse.el

index 291598c..e888712 100644 (file)
@@ -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.
 
index ac8ab28..457c00d 100644 (file)
@@ -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 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)))