Ticket #38859

Fix old style quotes

Open Date: 2019-01-13 09:35 Last Update: 2019-01-13 09:35

Reporter:
(Anonymous)
Owner:
(None)
Type:
Status:
Open
Component:
(None)
MileStone:
(None)
Priority:
5 - Medium
Severity:
5 - Medium
Resolution:
None
File:
None

Details

One line 230, old style quotes are used and no longer work with Emacs 27. I'm using the Melpa version, and not sure if this is the version to modify, but here's the offending macro:

;; Utilities (defmacro as-safe (&rest body)

"Safely execute BODY, return nil if an error occurred." ( (condition-case nil

(progn (,@ body))

(error nil))))

becomes:

;; Utilities (defmacro as-safe (&rest body)

"Safely execute BODY, return nil if an error occurred." (condition-case nil
(progn (,@ body))
(error nil)))

Ticket History (1/1 Histories)

2019-01-13 09:35 Updated by: None
  • New Ticket "Fix old style quotes" created

Attachment File List

No attachments

Edit

You are not logged in. I you are not logged in, your comment will be treated as an anonymous post. » Login