aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love1999-08-16 23:00:42 +0000
committerDave Love1999-08-16 23:00:42 +0000
commit0849a37e0735a22b6e3fc780781ee7893987fffd (patch)
tree33f134bbbe3eea43069bf2122b45aafe29e712c1
parent98aae5f6367eed3fc9621e21c53292ff06ec0291 (diff)
downloademacs-0849a37e0735a22b6e3fc780781ee7893987fffd.tar.gz
emacs-0849a37e0735a22b6e3fc780781ee7893987fffd.zip
Add x-stretch-cursor, indicate-empty-lines, scroll-up-aggressively,
scroll-down-aggressively.
-rw-r--r--lisp/cus-start.el11
1 files changed, 8 insertions, 3 deletions
diff --git a/lisp/cus-start.el b/lisp/cus-start.el
index 23ce3565aac..e9332ce9de4 100644
--- a/lisp/cus-start.el
+++ b/lisp/cus-start.el
@@ -1,6 +1,6 @@
1;;; cus-start.el --- define customization properties of builtins. 1;;; cus-start.el --- define customization properties of builtins.
2;; 2;;
3;; Copyright (C) 1997 Free Software Foundation, Inc. 3;; Copyright (C) 1997, 1999 Free Software Foundation, Inc.
4;; 4;;
5;; Author: Per Abrahamsen <abraham@dina.kvl.dk> 5;; Author: Per Abrahamsen <abraham@dina.kvl.dk>
6;; Keywords: internal 6;; Keywords: internal
@@ -54,6 +54,9 @@
54 (truncate-lines display boolean) 54 (truncate-lines display boolean)
55 (selective-display-ellipses display boolean) 55 (selective-display-ellipses display boolean)
56 (transient-mark-mode editing-basics boolean) 56 (transient-mark-mode editing-basics boolean)
57 (indicate-empty-lines display boolean)
58 (scroll-up-aggressively windows boolean)
59 (scroll-down-aggressively windows boolean)
57 ;; callint.c 60 ;; callint.c
58 (mark-even-if-inactive editing-basics boolean) 61 (mark-even-if-inactive editing-basics boolean)
59 ;; callproc.c 62 ;; callproc.c
@@ -70,7 +73,7 @@
70 ;; dired.c 73 ;; dired.c
71 (completion-ignored-extensions dired 74 (completion-ignored-extensions dired
72 (repeat (string :format "%v"))) 75 (repeat (string :format "%v")))
73 ;; dispnew.el 76 ;; dispnew.c
74 (baud-rate display integer) 77 (baud-rate display integer)
75 (inverse-video display boolean) 78 (inverse-video display boolean)
76 (visible-bell display boolean) 79 (visible-bell display boolean)
@@ -196,7 +199,9 @@
196 (unibyte-display-via-language-environment mule boolean) 199 (unibyte-display-via-language-environment mule boolean)
197 ;; xfns.c 200 ;; xfns.c
198 (x-bitmap-file-path installation 201 (x-bitmap-file-path installation
199 (repeat (directory :format "%v"))))) 202 (repeat (directory :format "%v")))
203 ;; xterm.c
204 (x-stretch-cursor display boolean)))
200 this symbol group type native-p 205 this symbol group type native-p
201 ;; This function turns a value 206 ;; This function turns a value
202 ;; into an expression which produces that value. 207 ;; into an expression which produces that value.