* 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)
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.
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)
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 ()
"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)