aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2000-11-23 16:13:21 +0000
committerEli Zaretskii2000-11-23 16:13:21 +0000
commit3b34558211b5260b744e7037eaa353fc25bb2eea (patch)
tree5320ad6cf8312cf5b63b4e08004f958515a3d341
parent1bde0b39f065ae76520f4fbcae8cb01828a76cd1 (diff)
downloademacs-3b34558211b5260b744e7037eaa353fc25bb2eea.tar.gz
emacs-3b34558211b5260b744e7037eaa353fc25bb2eea.zip
(turn-on-hscroll, hscroll-mode, hscroll-global-mode)
(hscroll-window-maybe): Docstring fix.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/hscroll.el12
2 files changed, 13 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index dc35d035076..d77e1a098ba 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12000-11-23 Eli Zaretskii <eliz@is.elta.co.il>
2
3 * hscroll.el (turn-on-hscroll, hscroll-mode, hscroll-global-mode)
4 (hscroll-window-maybe): Docstring fix.
5
12000-11-23 Dave Love <fx@gnu.org> 62000-11-23 Dave Love <fx@gnu.org>
2 7
3 * rect.el (string-rectangle): Don't test delete-selection-mode. 8 * 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."
74 74
75;;;###autoload 75;;;###autoload
76(defun turn-on-hscroll () 76(defun turn-on-hscroll ()
77 "This function is obsolete.") 77 "This function is obsolete.
78Emacs now does hscrolling automatically, if `truncate-lines' is non-nil.")
78 79
79;;;###autoload 80;;;###autoload
80(defun hscroll-mode (&optional arg) 81(defun hscroll-mode (&optional arg)
81 "This function is absolete." 82 "This function is obsolete.
83Emacs now does hscrolling automatically, if `truncate-lines' is non-nil."
82 (interactive "P")) 84 (interactive "P"))
83 85
84;;;###autoload 86;;;###autoload
85(defun hscroll-global-mode (&optional arg) 87(defun hscroll-global-mode (&optional arg)
86 "This function is absolete." 88 "This function is obsolete.
89Emacs now does hscrolling automatically, if `truncate-lines' is non-nil."
87 (interactive "P")) 90 (interactive "P"))
88 91
89(defun hscroll-window-maybe () 92(defun hscroll-window-maybe ()
90 "This function is obsolete." 93 "This function is obsolete.
94Emacs now does hscrolling automatically, if `truncate-lines' is non-nil."
91 (interactive)) 95 (interactive))
92 96
93(provide 'hscroll) 97(provide 'hscroll)