diff --git a/lisp/ChangeLog b/lisp/ChangeLog index dc35d035076..d77e1a098ba 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2000-11-23 Eli Zaretskii + + * hscroll.el (turn-on-hscroll, hscroll-mode, hscroll-global-mode) + (hscroll-window-maybe): Docstring fix. + 2000-11-23 Dave Love * rect.el (string-rectangle): Don't test delete-selection-mode. diff --git a/lisp/hscroll.el b/lisp/hscroll.el index 85565be8711..2987fc8f770 100644 --- a/lisp/hscroll.el +++ b/lisp/hscroll.el @@ -74,20 +74,24 @@ to hscroll from your init file and code." ;;;###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)