(turn-on-hscroll, hscroll-mode, hscroll-global-mode)

(hscroll-window-maybe): Docstring fix.
This commit is contained in:
Eli Zaretskii 2000-11-23 16:13:21 +00:00
parent 1bde0b39f0
commit 3b34558211
2 changed files with 13 additions and 4 deletions

View file

@ -1,3 +1,8 @@
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.

View file

@ -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)