diff options
| author | Glenn Morris | 2016-02-01 20:59:32 -0500 |
|---|---|---|
| committer | Glenn Morris | 2016-02-01 20:59:32 -0500 |
| commit | 93f21530ad0a17310f97f1a25dfbc67b249bf2e7 (patch) | |
| tree | fd53bd8927276313438bf6f967241e7a7ba0e8bf /lisp/replace.el | |
| parent | 9f60d7e9a27b107d5bd35bf9d7621a300e17dbfb (diff) | |
| download | emacs-93f21530ad0a17310f97f1a25dfbc67b249bf2e7.tar.gz emacs-93f21530ad0a17310f97f1a25dfbc67b249bf2e7.zip | |
Improve the custom type of some user options.
* lisp/autoinsert.el (auto-insert-alist):
* lisp/replace.el (query-replace-from-to-separator):
* lisp/gnus/gnus-art.el (gnus-hidden-properties):
* lisp/gnus/gnus-gravatar.el (gnus-gravatar-properties):
* lisp/gnus/gnus-picon.el (gnus-picon-properties):
* lisp/progmodes/prolog.el (prolog-keywords, prolog-types)
(prolog-mode-specificators, prolog-determinism-specificators)
(prolog-directives, prolog-program-name, prolog-program-switches)
(prolog-consult-string, prolog-compile-string, prolog-eof-string)
(prolog-prompt-regexp): Improve custom type.
Diffstat (limited to 'lisp/replace.el')
| -rw-r--r-- | lisp/replace.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/replace.el b/lisp/replace.el index f5c8d33b5f5..dfe8cd739a2 100644 --- a/lisp/replace.el +++ b/lisp/replace.el | |||
| @@ -85,7 +85,7 @@ from Isearch by using a key sequence like `C-s C-s M-%'." "24.3") | |||
| 85 | ;; while preparing to dump, also stops customize-rogue listing this. | 85 | ;; while preparing to dump, also stops customize-rogue listing this. |
| 86 | :initialize 'custom-initialize-delay | 86 | :initialize 'custom-initialize-delay |
| 87 | :group 'matching | 87 | :group 'matching |
| 88 | :type 'sexp | 88 | :type '(choice string (sexp :tag "Display specification")) |
| 89 | :version "25.1") | 89 | :version "25.1") |
| 90 | 90 | ||
| 91 | (defcustom query-replace-from-history-variable 'query-replace-history | 91 | (defcustom query-replace-from-history-variable 'query-replace-history |