aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/unicode-tokens.el
diff options
context:
space:
mode:
authorGravatar David Aspinall <da@inf.ed.ac.uk>2012-09-04 20:57:54 +0000
committerGravatar David Aspinall <da@inf.ed.ac.uk>2012-09-04 20:57:54 +0000
commit69909c47304b9ba74bc8c6c2be2702488f43848c (patch)
treefe7ada5be65d941d9bbff984c124efb5f02518a1 /lib/unicode-tokens.el
parent5de12ad3a052d648454fbf1989c903a0bc0a1ccd (diff)
Fix compile for Emacs 24
Diffstat (limited to 'lib/unicode-tokens.el')
-rw-r--r--lib/unicode-tokens.el14
1 files changed, 6 insertions, 8 deletions
diff --git a/lib/unicode-tokens.el b/lib/unicode-tokens.el
index 4d6c5edb..f9972aea 100644
--- a/lib/unicode-tokens.el
+++ b/lib/unicode-tokens.el
@@ -45,13 +45,11 @@
(require 'quail)
(eval-when-compile
- (require 'maths-menu)) ; nuke compile warnings
-
-
-;; Emacs <24 compatibility
-(unless (and (fboundp 'flet)
+ (require 'maths-menu) ; nuke compile warnings
+ ;; Emacs <24 compatibility
+ (when (and (fboundp 'flet)
(not (get 'flet 'byte-obsolete-info)))
- (defalias 'cl-flet 'flet))
+ (defalias 'cl-flet 'flet)))
;;
;; Customizable user options
@@ -867,8 +865,8 @@ Starts from point."
(regexp-opt (mapcar 'car unicode-tokens-shortcut-replacement-alist))))
;; override the display of the regexp because it's huge!
;; (doesn't help with C-h: need way to programmatically show string)
- (cl-flet ((query-replace-descr (str) (if (eq str shortcut-regexp)
- "shortcut" str)))
+ (cl-flet ((query-replace-descr (str)
+ (if (eq str shortcut-regexp) "shortcut" str)))
(perform-replace shortcut-regexp
(cons 'unicode-tokens-replace-shortcut-match nil)
t t nil))))