Ticket #38859

Fix old style quotes

Eröffnet am: 2019-01-13 09:35 Letztes Update: 2019-01-13 09:35

Auswertung:
(Anonym)
Verantwortlicher:
(Keine)
Typ:
Status:
Offen
Komponente:
(Keine)
Meilenstein:
(Keine)
Priorität:
5 - Mittel
Schweregrad:
5 - Mittel
Lösung:
Keine
Datei:
Keine

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-Verlauf (1/1 Historien)

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

Dateianhangliste

Keine Anhänge

Bearbeiten

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