1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-13 09:32:47 +00:00
emacs/lisp/auto-show.el

51 lines
1.1 KiB
EmacsLisp
Raw Normal View History

1995-10-30 17:35:01 +00:00
;;; auto-show.el --- perform automatic horizontal scrolling as point moves
;;; This file is in the public domain.
1995-03-12 09:05:52 +00:00
;;; Keywords: scroll display convenience
;;; Author: Pete Ware <ware@cis.ohio-state.edu>
;;; Maintainer: FSF
;;; Commentary:
1999-09-06 16:01:22 +00:00
;; This file contains dummy variables and functions only because Emacs
;; does hscrolling automatically, now.
1995-03-12 09:05:52 +00:00
;;; Code:
1995-03-12 09:05:52 +00:00
1997-12-10 11:24:33 +00:00
(defgroup auto-show nil
2000-02-23 14:52:41 +00:00
"This customization group is kept for compatibility only.
1999-09-06 16:01:22 +00:00
Emacs now does hscrolling automatically. Please remove references
2000-02-23 14:52:41 +00:00
to auto-show from your init file and code."
1997-12-10 11:24:33 +00:00
:group 'editing)
;;;###autoload
(defcustom auto-show-mode nil
1999-09-06 16:01:22 +00:00
"Obsolete."
:version "20.4"
1997-12-10 11:24:33 +00:00
:type 'boolean
:group 'auto-show)
1995-03-12 09:05:52 +00:00
1997-12-10 11:24:33 +00:00
(defcustom auto-show-shift-amount 8
1999-09-06 16:01:22 +00:00
"*Obsolete."
1997-12-10 11:24:33 +00:00
:type 'integer
:group 'auto-show)
1995-03-12 09:05:52 +00:00
1997-12-10 11:24:33 +00:00
(defcustom auto-show-show-left-margin-threshold 50
1999-09-06 16:01:22 +00:00
"*Obsolete."
1997-12-10 11:24:33 +00:00
:type 'integer
:group 'auto-show)
1995-03-12 09:05:52 +00:00
;;;###autoload
(defun auto-show-mode (arg)
1999-09-06 19:49:33 +00:00
"This command is obsolete."
1999-09-06 16:01:22 +00:00
(interactive "P"))
1995-03-12 09:05:52 +00:00
(defun auto-show-make-point-visible (&optional ignore-arg)
1999-09-06 19:49:33 +00:00
"This command is obsolete."
1999-09-06 16:01:22 +00:00
(interactive))
(provide 'auto-show)
1995-03-12 09:05:52 +00:00
;; auto-show.el ends here
1995-03-12 09:05:52 +00:00