diff options
| author | Kim F. Storm | 2007-04-08 22:02:42 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2007-04-08 22:02:42 +0000 |
| commit | 7704b6b1329eecfb27f0d4ecadf15c68205a0cfb (patch) | |
| tree | ed6c273847a6ad11996633bde3a7cf5ad8634787 | |
| parent | 642fdf3c2d89a53af7d7796c6c1c9aa5237a79a5 (diff) | |
| download | emacs-7704b6b1329eecfb27f0d4ecadf15c68205a0cfb.tar.gz emacs-7704b6b1329eecfb27f0d4ecadf15c68205a0cfb.zip | |
2007-04-08 Martin Rudalics <rudalics@gmx.at>
* cus-start.el <scroll-preserve-screen-position>: Add choices.
| -rw-r--r-- | lisp/cus-start.el | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lisp/cus-start.el b/lisp/cus-start.el index da2f0a54c2c..61f073119e7 100644 --- a/lisp/cus-start.el +++ b/lisp/cus-start.el | |||
| @@ -338,7 +338,11 @@ since it could result in memory overflow and make Emacs crash." | |||
| 338 | (split-height-threshold windows integer) | 338 | (split-height-threshold windows integer) |
| 339 | (window-min-height windows integer) | 339 | (window-min-height windows integer) |
| 340 | (window-min-width windows integer) | 340 | (window-min-width windows integer) |
| 341 | (scroll-preserve-screen-position windows boolean) | 341 | (scroll-preserve-screen-position |
| 342 | windows (choice | ||
| 343 | (const :tag "Off (nil)" :value nil) | ||
| 344 | (const :tag "Full screen (t)" :value t) | ||
| 345 | (other :tag "Always" 1))) | ||
| 342 | (display-buffer-reuse-frames windows boolean "21.1") | 346 | (display-buffer-reuse-frames windows boolean "21.1") |
| 343 | ;; xdisp.c | 347 | ;; xdisp.c |
| 344 | (scroll-step windows integer) | 348 | (scroll-step windows integer) |