mirror of
https://git.savannah.gnu.org/git/emacs/org-mode.git
synced 2024-12-24 10:38:41 +00:00
fix a possible (wrong-type-argument stringp nil) error
* lisp/org-compat.el: Make sure that file-name-directory is getting a stringp. This avoids a possible "(wrong-type-argument stringp nil)" error when the library in question does not exist.
This commit is contained in:
parent
b47a7d5125
commit
d56ad98544
@ -327,7 +327,7 @@ Works on both Emacs and XEmacs."
|
||||
(apply 'propertize string properties)))
|
||||
|
||||
(defmacro org-find-library-dir (library)
|
||||
`(file-name-directory (locate-library ,library)))
|
||||
`(file-name-directory (or (locate-library ,library) "")))
|
||||
|
||||
(defun org-count-lines (s)
|
||||
"How many lines in string S?"
|
||||
|
Loading…
Reference in New Issue
Block a user