]> git.eshelyaron.com Git - emacs.git/commitdiff
Correct some custom type typos
authorRobert Pluim <rpluim@gmail.com>
Tue, 1 Oct 2019 08:50:47 +0000 (10:50 +0200)
committerRobert Pluim <rpluim@gmail.com>
Tue, 1 Oct 2019 08:50:47 +0000 (10:50 +0200)
* 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)

lisp/image.el
lisp/progmodes/flymake-cc.el
lisp/progmodes/sql.el
lisp/vc/add-log.el

index eaa6ed3b0ea0742a76abfdb8e2a34fb2ce46f7d7..e44330fdfa96e90cf7420af1d979a1154dc0f131 100644 (file)
@@ -148,7 +148,7 @@ and some others) internally, but images that don't have native
 support in Emacs can still be displayed if an external conversion
 program (like ImageMagick \"convert\", GraphicsMagick \"gm\"
 or \"ffmpeg\") is installed."
-  :type 'bool
+  :type 'boolean
   :version "27.1")
 
 ;; Map put into text properties on images.
index ecf6e648a7e8da4b91d24a1ae2b03dbb013a80d0..f8c8eee26b2bca54a1aca7d7706b0752e67a4bc8 100644 (file)
@@ -37,7 +37,8 @@ syntax of a (Obj)C(++) program passed to it via its standard
 input and prints the result on its standard output."
   :type '(choice
           (symbol :tag "Function")
-          ((repeat :) string))
+          (repeat :tag "Command(s)" string))
+  :version "27.1"
   :group 'flymake-cc)
 
 (defun flymake-cc--make-diagnostics (source)
index 2d33b3130cd34720824f21f75f7ff19797a1feef..b17364b08f32afecd4a4dfe0365bffb003d993d5 100644 (file)
@@ -737,7 +737,7 @@ requirements.
 The package must be available to be loaded and activated."
   :group 'SQL
   :link '(url-link "https://elpa.gnu.org/packages/sql-indent.html")
-  :type 'booleanp
+  :type 'boolean
   :version "27.1")
 
 (defun sql-indent-enable ()
index 47a68167fb70931ef844528a98cb63ca1cecc2f3..5c27a65ea1250debc9888c5cd566982987ca0382 100644 (file)
@@ -811,7 +811,7 @@ Optional arg BUFFER-FILE overrides `buffer-file-name'."
   "If non-nil, don't create ChangeLog files for log entries.
 If a ChangeLog file does not already exist, a non-nil value
 means to put log entries in a suitably named buffer."
-  :type :boolean
+  :type 'boolean
   :version "27.1")
 
 (put 'add-log-dont-create-changelog-file 'safe-local-variable 'booleanp)