Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
24978190
Commit
24978190
authored
May 17, 2000
by
Eli Zaretskii
Browse files
(image-type-available-p): Don't reference image-types
if it isn't bound.
parent
2fca2d5d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/image.el
lisp/image.el
+1
-1
No files found.
lisp/ChangeLog
View file @
24978190
2000-05-17 Eli Zaretskii <eliz@is.elta.co.il>
* image.el (image-type-available-p): Don't reference image-types
if it isn't bound.
2000-05-17 Stefan Monnier <monnier@cs.yale.edu>
* autoarg.el (autoarg-mode): Typo in the :set argument.
...
...
lisp/image.el
View file @
24978190
...
...
@@ -72,7 +72,7 @@ be determined."
(
defun
image-type-available-p
(
type
)
"Value is non-nil if image type TYPE is available.
Image types are symbols like `xbm' or `jpeg'."
(
not
(
null
(
memq
type
image-types
))))
(
and
(
boundp
'image-types
)
(
not
(
null
(
memq
type
image-types
))))
)
;;;###autoload
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment