diff options
| author | Dave Love | 2000-11-27 17:46:24 +0000 |
|---|---|---|
| committer | Dave Love | 2000-11-27 17:46:24 +0000 |
| commit | ecf5279ade7a9281ded73a6eca74c24272c7c452 (patch) | |
| tree | 4f3bb6629f6e7f247a27bb44ba964e177261b66e | |
| parent | 0934097355f21077d8e2ead4e7301c0323d00880 (diff) | |
| download | emacs-ecf5279ade7a9281ded73a6eca74c24272c7c452.tar.gz emacs-ecf5279ade7a9281ded73a6eca74c24272c7c452.zip | |
Add version.
<read-buffer-function>: Add.
| -rw-r--r-- | lisp/cus-start.el | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lisp/cus-start.el b/lisp/cus-start.el index 1dbed46d4be..c2a3a32e218 100644 --- a/lisp/cus-start.el +++ b/lisp/cus-start.el | |||
| @@ -175,8 +175,11 @@ | |||
| 175 | (list :inline t | 175 | (list :inline t |
| 176 | :format "%v" | 176 | :format "%v" |
| 177 | (symbol :tag "Property") | 177 | (symbol :tag "Property") |
| 178 | (sexp :tag "Value"))))) | 178 | (sexp :tag "Value")))) |
| 179 | "21.1") | ||
| 179 | (minibuffer-auto-raise minibuffer boolean) | 180 | (minibuffer-auto-raise minibuffer boolean) |
| 181 | ;; options property set at end | ||
| 182 | (read-buffer-function minibuffer (choice nil function)) | ||
| 180 | ;; msdos.c | 183 | ;; msdos.c |
| 181 | (dos-unsupported-char-glyph display integer) | 184 | (dos-unsupported-char-glyph display integer) |
| 182 | ;; process.c | 185 | ;; process.c |
| @@ -292,6 +295,9 @@ | |||
| 292 | (put symbol 'custom-type type) | 295 | (put symbol 'custom-type type) |
| 293 | (put symbol 'custom-version version))))) | 296 | (put symbol 'custom-version version))))) |
| 294 | 297 | ||
| 298 | (custom-add-option 'read-buffer-function 'iswitchb-read-buffer) | ||
| 299 | (custom-add-to-group 'iswitchb 'read-buffer-function 'custom-variable) | ||
| 300 | |||
| 295 | ;; Record cus-start as loaded | 301 | ;; Record cus-start as loaded |
| 296 | ;; if we have set up all the info that we can set up. | 302 | ;; if we have set up all the info that we can set up. |
| 297 | ;; Don't record cus-start as loaded | 303 | ;; Don't record cus-start as loaded |