changeset 33816:c336fb1b43e1

(turn-on-hscroll, hscroll-mode, hscroll-global-mode) (hscroll-window-maybe): Docstring fix.
author Eli Zaretskii <eliz@gnu.org>
date Thu, 23 Nov 2000 16:12:58 +0000
parents 61c7f3065929
children c0bef67fde0c
files lisp/hscroll.el
diffstat 1 files changed, 8 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/hscroll.el	Thu Nov 23 16:09:21 2000 +0000
+++ b/lisp/hscroll.el	Thu Nov 23 16:12:58 2000 +0000
@@ -74,20 +74,24 @@
 
 ;;;###autoload
 (defun turn-on-hscroll ()
-  "This function is obsolete.")
+  "This function is obsolete.
+Emacs now does hscrolling automatically, if `truncate-lines' is non-nil.")
 
 ;;;###autoload
 (defun hscroll-mode (&optional arg)
-  "This function is absolete."
+  "This function is obsolete.
+Emacs now does hscrolling automatically, if `truncate-lines' is non-nil."
   (interactive "P"))
 
 ;;;###autoload
 (defun hscroll-global-mode  (&optional arg)
-  "This function is absolete."
+  "This function is obsolete.
+Emacs now does hscrolling automatically, if `truncate-lines' is non-nil."
   (interactive "P"))
 
 (defun hscroll-window-maybe ()
-  "This function is obsolete."
+  "This function is obsolete.
+Emacs now does hscrolling automatically, if `truncate-lines' is non-nil."
   (interactive))
 
 (provide 'hscroll)