Some fixes to follow coding conventions in files maintained by FSF.
[bpt/emacs.git] / lisp / obsolete / auto-show.el
CommitLineData
be010748 1;;; auto-show.el --- perform automatic horizontal scrolling as point moves
4d235ac7 2;;; This file is in the public domain.
495a2b0a 3
55535639
PJ
4;; This file is part of GNU Emacs.
5
6;; Keywords: scroll display convenience
7;; Author: Pete Ware <ware@cis.ohio-state.edu>
8;; Maintainer: FSF
4d235ac7
RS
9
10;;; Commentary:
11
317f4819
GM
12;; This file contains dummy variables and functions only because Emacs
13;; does hscrolling automatically, now.
495a2b0a 14
4d235ac7 15;;; Code:
495a2b0a 16
fa4a3d49 17(defgroup auto-show nil
e7165cf0 18 "This customization group is kept for compatibility only.
317f4819 19Emacs now does hscrolling automatically. Please remove references
e7165cf0 20to auto-show from your init file and code."
fa4a3d49
AS
21 :group 'editing)
22
adb643d3
KH
23;;;###autoload
24(defcustom auto-show-mode nil
317f4819 25 "Obsolete."
adb643d3 26 :version "20.4"
fa4a3d49
AS
27 :type 'boolean
28 :group 'auto-show)
495a2b0a 29
fa4a3d49 30(defcustom auto-show-shift-amount 8
317f4819 31 "*Obsolete."
fa4a3d49
AS
32 :type 'integer
33 :group 'auto-show)
495a2b0a 34
fa4a3d49 35(defcustom auto-show-show-left-margin-threshold 50
317f4819 36 "*Obsolete."
fa4a3d49
AS
37 :type 'integer
38 :group 'auto-show)
495a2b0a 39
4d235ac7
RS
40;;;###autoload
41(defun auto-show-mode (arg)
e2273040 42 "This command is obsolete."
317f4819 43 (interactive "P"))
495a2b0a
RS
44
45(defun auto-show-make-point-visible (&optional ignore-arg)
e2273040 46 "This command is obsolete."
317f4819 47 (interactive))
4d235ac7
RS
48
49(provide 'auto-show)
495a2b0a 50
55535639 51;;; auto-show.el ends here