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 | |
| 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)
| -rw-r--r-- | lisp/image.el | 2 | ||||
| -rw-r--r-- | lisp/progmodes/flymake-cc.el | 3 | ||||
| -rw-r--r-- | lisp/progmodes/sql.el | 2 | ||||
| -rw-r--r-- | lisp/vc/add-log.el | 2 |
4 files changed, 5 insertions, 4 deletions
diff --git a/lisp/image.el b/lisp/image.el index eaa6ed3b0ea..e44330fdfa9 100644 --- a/lisp/image.el +++ b/lisp/image.el | |||
| @@ -148,7 +148,7 @@ and some others) internally, but images that don't have native | |||
| 148 | support in Emacs can still be displayed if an external conversion | 148 | support in Emacs can still be displayed if an external conversion |
| 149 | program (like ImageMagick \"convert\", GraphicsMagick \"gm\" | 149 | program (like ImageMagick \"convert\", GraphicsMagick \"gm\" |
| 150 | or \"ffmpeg\") is installed." | 150 | or \"ffmpeg\") is installed." |
| 151 | :type 'bool | 151 | :type 'boolean |
| 152 | :version "27.1") | 152 | :version "27.1") |
| 153 | 153 | ||
| 154 | ;; Map put into text properties on images. | 154 | ;; Map put into text properties on images. |
diff --git a/lisp/progmodes/flymake-cc.el b/lisp/progmodes/flymake-cc.el index ecf6e648a7e..f8c8eee26b2 100644 --- a/lisp/progmodes/flymake-cc.el +++ b/lisp/progmodes/flymake-cc.el | |||
| @@ -37,7 +37,8 @@ syntax of a (Obj)C(++) program passed to it via its standard | |||
| 37 | input and prints the result on its standard output." | 37 | input and prints the result on its standard output." |
| 38 | :type '(choice | 38 | :type '(choice |
| 39 | (symbol :tag "Function") | 39 | (symbol :tag "Function") |
| 40 | ((repeat :) string)) | 40 | (repeat :tag "Command(s)" string)) |
| 41 | :version "27.1" | ||
| 41 | :group 'flymake-cc) | 42 | :group 'flymake-cc) |
| 42 | 43 | ||
| 43 | (defun flymake-cc--make-diagnostics (source) | 44 | (defun flymake-cc--make-diagnostics (source) |
diff --git a/lisp/progmodes/sql.el b/lisp/progmodes/sql.el index 2d33b3130cd..b17364b08f3 100644 --- a/lisp/progmodes/sql.el +++ b/lisp/progmodes/sql.el | |||
| @@ -737,7 +737,7 @@ requirements. | |||
| 737 | The package must be available to be loaded and activated." | 737 | The package must be available to be loaded and activated." |
| 738 | :group 'SQL | 738 | :group 'SQL |
| 739 | :link '(url-link "https://elpa.gnu.org/packages/sql-indent.html") | 739 | :link '(url-link "https://elpa.gnu.org/packages/sql-indent.html") |
| 740 | :type 'booleanp | 740 | :type 'boolean |
| 741 | :version "27.1") | 741 | :version "27.1") |
| 742 | 742 | ||
| 743 | (defun sql-indent-enable () | 743 | (defun sql-indent-enable () |
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) |