# HG changeset patch # User Oleksandr Gavenko # Date 1564310948 -10800 # Node ID 0f4f0205ef3ea1864cd596461b931d069b9a780d # Parent cf7966919bd9c370bac40d8a3914225e4fd7d8ac No need for default value. It can hide bug. diff -r cf7966919bd9 -r 0f4f0205ef3e .emacs-my --- a/.emacs-my Wed Jul 17 00:53:27 2019 +0300 +++ b/.emacs-my Sun Jul 28 13:49:08 2019 +0300 @@ -725,7 +725,7 @@ "Get character by Unicode `name'." (cond ((>= 26 emacs-major-version) - (gethash name (ucs-names) t)) + (gethash name (ucs-names))) ((>= 23 emacs-major-version) (cdr (assoc-string name (ucs-names)))) (t (error "Emacs version is too old and lacks Unicode support..."))))