diff options
author | Dave Love <fx@gnu.org> | 2000-08-20 17:21:22 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 2000-08-20 17:21:22 +0000 |
commit | 3378294ec7a1e36a56663ac2a9a371e714d99bfc (patch) | |
tree | 40d079d023b1ab7fcf1fa01e478177134225c2a8 /lisp | |
parent | 3b8770a85aa461f186f9bc66a4c64e063140b409 (diff) | |
download | emacs-3378294ec7a1e36a56663ac2a9a371e714d99bfc.tar.gz |
Add display-buffer-reuse-frames,
file-coding-system-alist.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/cus-start.el | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/lisp/cus-start.el b/lisp/cus-start.el index 90cfe72d9eb..620a870090b 100644 --- a/lisp/cus-start.el +++ b/lisp/cus-start.el @@ -70,6 +70,19 @@ (eol-mnemonic-unix mule string) (eol-mnemonic-dos mule string) (eol-mnemonic-mac mule string) + (file-coding-system-alist + mule + (alist + :key-type (regexp :tag "File regexp") + :value-type (choice + :value (undecided . undecided) + (cons :tag "Encoding/decoding pair" + :value (undecided . undecided) + (coding-system :tag "Decoding") + (coding-system :tag "Encoding")) + (coding-system :tag "Single coding system" + :value undecided) + (function :value ignore)))) ;; dired.c (completion-ignored-extensions dired (repeat (string :format "%v"))) @@ -191,6 +204,7 @@ (window-min-height windows integer) (window-min-width windows integer) (scroll-preserve-screen-position windows boolean) + (display-buffer-reuse-frames windows boolean "21.1") ;; xdisp.c (scroll-step windows integer) (scroll-conservatively windows integer) |