Skip to content

Commit a763d58

Browse files
committed
fix: remove quotation in ignore-error condition
According to the help message for `ignore-error', the error condition should not be quoted. This will raise an error when byte-compiling in Emacs 30.2.
1 parent 5da7e68 commit a763d58

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

citar-file.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ SEPCHAR."
390390
(goto-char (point-min))
391391
(while (progn (skip-chars-forward skip) (not (eobp)))
392392
(if (= ?\\ (following-char))
393-
(ignore-error 'end-of-buffer (forward-char 2))
393+
(ignore-error end-of-buffer (forward-char 2))
394394
(push (delete-and-extract-region (point-min) (point)) strings)
395395
(delete-char 1)))
396396
(push (buffer-string) strings))

0 commit comments

Comments
 (0)