Open davep opened 8 years ago
If you start hyde from a buffer where buffer-file-name returns nil you get the following error:
buffer-file-name
nil
abbreviate-file-name: Wrong type argument: stringp, nil
The problem seems to be in hyde/ask-for-jekyll-root. Perhaps (or (buffer-file-name) "") would make more sense than (buffer-file-name)?
hyde/ask-for-jekyll-root
(or (buffer-file-name) "")
(buffer-file-name)
If you start hyde from a buffer where
buffer-file-name
returnsnil
you get the following error:abbreviate-file-name: Wrong type argument: stringp, nil
The problem seems to be in
hyde/ask-for-jekyll-root
. Perhaps(or (buffer-file-name) "")
would make more sense than(buffer-file-name)
?