1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-31 11:13:50 +00:00
emacs/lisp/obsolete/hscroll.el

107 lines
2.7 KiB
EmacsLisp
Raw Normal View History

2000-12-11 10:21:06 +00:00
;;; hscroll.el --- automatically scroll truncated lines horizontally
2005-08-06 17:48:15 +00:00
2006-12-09 04:06:06 +00:00
;; Copyright (C) 1992, 1993, 1995, 1996, 2001, 2002, 2003, 2004,
2007-01-21 03:53:13 +00:00
;; 2005, 2006, 2007 Free Software Foundation, Inc.
2000-12-11 10:21:06 +00:00
;; Author: Wayne Mesard <wmesard@esd.sgi.com>
;; Keywords: display
;; This file is part of GNU Emacs.
;; GNU Emacs is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
2007-07-25 04:24:43 +00:00
;; the Free Software Foundation; either version 3, or (at your option)
2000-12-11 10:21:06 +00:00
;; any later version.
;; GNU Emacs is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs; see the file COPYING. If not, write to the
2005-07-04 17:55:18 +00:00
;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
;; Boston, MA 02110-1301, USA.
2000-12-11 10:21:06 +00:00
;;; Commentary:
;;
;; This file contains dummy variables and functions only because Emacs
;; does hscrolling automatically, now.
;;; Code:
2003-02-04 13:24:35 +00:00
;;;
2000-12-11 10:21:06 +00:00
;;; PUBLIC VARIABLES
2003-02-04 13:24:35 +00:00
;;;
2000-12-11 10:21:06 +00:00
(defvar hscroll-version "0.0")
(defgroup hscroll nil
"This customization group is kept for compatibility only.
Emacs now does hscrolling automatically. Please remove references
to hscroll from your init file and code."
:group 'editing)
(defcustom hscroll-global-mode nil
"*Obsolete."
:group 'hscroll
:type 'boolean
:require 'hscroll
:version "20.3")
2003-02-04 13:24:35 +00:00
(defcustom hscroll-margin 5
2000-12-11 10:21:06 +00:00
"*Obsolete."
:group 'hscroll
:type 'integer)
(defcustom hscroll-snap-threshold 30
"*Obsolete."
:group 'hscroll
:type 'integer)
(defcustom hscroll-step-percent 25
"*Obsolete."
:group 'hscroll
:type 'integer)
(defcustom hscroll-mode-name " Hscr"
"*Obsolete."
:group 'hscroll
:type 'string)
2003-02-04 13:24:35 +00:00
;;;
2000-12-11 10:21:06 +00:00
;;; PUBLIC COMMANDS
2003-02-04 13:24:35 +00:00
;;;
2000-12-11 10:21:06 +00:00
;;;###autoload
(defun turn-on-hscroll ()
"This function is obsolete.
Emacs now does hscrolling automatically, if `truncate-lines' is non-nil.
Also see `automatic-hscrolling'.")
;;;###autoload
(defun hscroll-mode (&optional arg)
"This function is obsolete.
Emacs now does hscrolling automatically, if `truncate-lines' is non-nil.
Also see `automatic-hscrolling'."
(interactive "P"))
;;;###autoload
(defun hscroll-global-mode (&optional arg)
"This function is obsolete.
Emacs now does hscrolling automatically, if `truncate-lines' is non-nil.
Also see `automatic-hscrolling'."
(interactive "P"))
(defun hscroll-window-maybe ()
"This function is obsolete.
Emacs now does hscrolling automatically, if `truncate-lines' is non-nil.
Also see `automatic-hscrolling'."
(interactive))
(provide 'hscroll)
2003-09-01 15:45:59 +00:00
;;; arch-tag: 48377520-e5ca-401d-b360-3881b2d5a05a
2000-12-11 10:21:06 +00:00
;;; hscroll.el ends here