+2000-11-23 Eli Zaretskii <eliz@is.elta.co.il>
+
+ * hscroll.el (turn-on-hscroll, hscroll-mode, hscroll-global-mode)
+ (hscroll-window-maybe): Docstring fix.
+
2000-11-23 Dave Love <fx@gnu.org>
* rect.el (string-rectangle): Don't test delete-selection-mode.
;;;###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)