# HG changeset patch # User Eli Zaretskii # Date 974995978 0 # Node ID c336fb1b43e1f2262fe104684817d7e9a9729d5f # Parent 61c7f30659296817e4beb9dd4c3b15b9a12fed00 (turn-on-hscroll, hscroll-mode, hscroll-global-mode) (hscroll-window-maybe): Docstring fix. diff -r 61c7f3065929 -r c336fb1b43e1 lisp/hscroll.el --- 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)