diff options
| author | Robert Pluim | 2019-10-01 10:50:47 +0200 |
|---|---|---|
| committer | Robert Pluim | 2019-10-01 10:50:47 +0200 |
| commit | cdc440f0b62362fd38e91e2099919d57fef06436 (patch) | |
| tree | 91b9dddc2e82127dd7a4cd20ecf9f31f0b0fdb78 /lisp/vc | |
| parent | 0e568838781a4a5f2970bff6245c4e41f31612cc (diff) | |
| download | emacs-cdc440f0b62362fd38e91e2099919d57fef06436.tar.gz emacs-cdc440f0b62362fd38e91e2099919d57fef06436.zip | |
Correct some custom type typos
* lisp/image.el (image-use-external-converter):
* lisp/progmodes/sql.el (sql-use-indent-support):
* lisp/vc/add-log.el (add-log-dont-create-changelog-file): Fix
misspelled 'boolean custom type.
* lisp/progmodes/flymake-cc.el (flymake-cc-command): Correct custom
type specification. (Bug#30990)
Diffstat (limited to 'lisp/vc')
| -rw-r--r-- | lisp/vc/add-log.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/vc/add-log.el b/lisp/vc/add-log.el index 47a68167fb7..5c27a65ea12 100644 --- a/lisp/vc/add-log.el +++ b/lisp/vc/add-log.el | |||
| @@ -811,7 +811,7 @@ Optional arg BUFFER-FILE overrides `buffer-file-name'." | |||
| 811 | "If non-nil, don't create ChangeLog files for log entries. | 811 | "If non-nil, don't create ChangeLog files for log entries. |
| 812 | If a ChangeLog file does not already exist, a non-nil value | 812 | If a ChangeLog file does not already exist, a non-nil value |
| 813 | means to put log entries in a suitably named buffer." | 813 | means to put log entries in a suitably named buffer." |
| 814 | :type :boolean | 814 | :type 'boolean |
| 815 | :version "27.1") | 815 | :version "27.1") |
| 816 | 816 | ||
| 817 | (put 'add-log-dont-create-changelog-file 'safe-local-variable 'booleanp) | 817 | (put 'add-log-dont-create-changelog-file 'safe-local-variable 'booleanp) |