1 ;;; hscroll.el --- automatically scroll truncated lines horizontally
2 ;;; Copyright (C) 1992, 1993, 1995, 1996 Free Software Foundation, Inc.
4 ;; Author: Wayne Mesard <wmesard@esd.sgi.com>
7 ;; This file is part of GNU Emacs.
9 ;; GNU Emacs is free software; you can redistribute it and/or modify
10 ;; it under the terms of the GNU General Public License as published by
11 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; GNU Emacs is distributed in the hope that it will be useful,
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 ;; GNU General Public License for more details.
19 ;; You should have received a copy of the GNU General Public License
20 ;; along with GNU Emacs; see the file COPYING. If not, write to the
21 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22 ;; Boston, MA 02111-1307, USA.
26 ;; This file contains dummy variables and functions only because Emacs
27 ;; does hscrolling automatically, now.
35 (defvar hscroll-version
"0.0")
38 "This customization group is kept for compatibility only.
39 Emacs now does hscrolling automatically. Please remove references
40 to hscroll from your init file and code."
44 (defcustom hscroll-global-mode nil
51 (defcustom hscroll-margin
5
56 (defcustom hscroll-snap-threshold
30
61 (defcustom hscroll-step-percent
25
66 (defcustom hscroll-mode-name
" Hscr"
76 (defun turn-on-hscroll ()
77 "This function is obsolete.
78 Emacs now does hscrolling automatically, if `truncate-lines' is non-nil.
79 Also see `automatic-hscrolling'.")
82 (defun hscroll-mode (&optional arg
)
83 "This function is obsolete.
84 Emacs now does hscrolling automatically, if `truncate-lines' is non-nil.
85 Also see `automatic-hscrolling'."
89 (defun hscroll-global-mode (&optional arg
)
90 "This function is obsolete.
91 Emacs now does hscrolling automatically, if `truncate-lines' is non-nil.
92 Also see `automatic-hscrolling'."
95 (defun hscroll-window-maybe ()
96 "This function is obsolete.
97 Emacs now does hscrolling automatically, if `truncate-lines' is non-nil.
98 Also see `automatic-hscrolling'."
103 ;;; hscroll.el ends here