aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/unicode-tokens.el
diff options
context:
space:
mode:
authorGravatar David Aspinall <da@inf.ed.ac.uk>2009-09-06 19:26:13 +0000
committerGravatar David Aspinall <da@inf.ed.ac.uk>2009-09-06 19:26:13 +0000
commit0f7e01e92a1718a37ac9eef32e6ee9c3618ef61c (patch)
tree68f1de8269ba23df898e56db4c59296b4dfb4de9 /lib/unicode-tokens.el
parent7859bd05691a5e49a0a2b48699b3a11bbf444b70 (diff)
Whitespace
Diffstat (limited to 'lib/unicode-tokens.el')
-rw-r--r--lib/unicode-tokens.el20
1 files changed, 10 insertions, 10 deletions
diff --git a/lib/unicode-tokens.el b/lib/unicode-tokens.el
index ae394025..529ac8bc 100644
--- a/lib/unicode-tokens.el
+++ b/lib/unicode-tokens.el
@@ -188,8 +188,8 @@ if it is bound; it should be the name of a variable."
unicode-tokens-shortcut-alist))
(unless unicode-tokens-tokens-customizable-variables
(setq unicode-tokens-tokens-customizable-variables
- (list
- (list "Token Map"
+ (list
+ (list "Token Map"
(symbol-value (unicode-tokens-config-var 'token-symbol-map)))
(list "Shortcut List"
(symbol-value (unicode-tokens-config-var 'shortcut-alist)))))))
@@ -422,7 +422,7 @@ The check is with `char-displayable-p'."
(defun unicode-tokens-interpret-composition (comp)
"Turn the composition string COMP into an argument for `compose-region'."
- (cond
+ (cond
((and (stringp comp) (= 1 (length comp)))
comp)
((stringp comp)
@@ -437,7 +437,7 @@ The check is with `char-displayable-p'."
res))
(t
comp)))
-
+
(defun unicode-tokens-font-lock-compose-symbol (match)
"Compose a sequence of chars into a symbol.
Regexp match data number MATCH selects the token name, while 0 matches the
@@ -451,7 +451,7 @@ The face property is set to the :family of `unicode-tokens-symbol-font-face'."
(propsyms (cdr-safe compps))
(comp (car-safe compps)))
(if (and comp (not unicode-tokens-show-symbols))
- (compose-region start end
+ (compose-region start end
(unicode-tokens-interpret-composition comp)))
(if propsyms
(let ((props (unicode-tokens-symbs-to-props propsyms)))
@@ -757,7 +757,7 @@ Available annotations chosen from `unicode-tokens-control-regions'."
;; (doesn't help with C-h: need way to programmatically show string)
(flet ((query-replace-descr (str) (if (eq str shortcut-regexp)
"shortcut" str)))
- (perform-replace shortcut-regexp
+ (perform-replace shortcut-regexp
(cons 'unicode-tokens-replace-shortcut-match nil)
t t nil))))
@@ -765,7 +765,7 @@ Available annotations chosen from `unicode-tokens-control-regions'."
"Subroutine for `unicode-tokens-replace-unicode'."
(let* ((useq (match-string-no-properties 0))
(token (gethash useq unicode-tokens-uchar-hash-table)))
- (if token (regexp-quote
+ (if token (regexp-quote
(format unicode-tokens-token-format token)))))
(defun unicode-tokens-replace-unicode ()
@@ -776,7 +776,7 @@ Available annotations chosen from `unicode-tokens-control-regions'."
;; (doesn't help with C-h: need way to programmatically show string)
(flet ((query-replace-descr (str) (if (eq str uchar-regexp)
"unicode presentation" str)))
- (perform-replace uchar-regexp
+ (perform-replace uchar-regexp
(cons 'unicode-tokens-replace-unicode-match nil)
t t nil))))
@@ -1204,7 +1204,7 @@ Commands available are:
;;
(defun unicode-tokens-customize-submenu ()
- (mapcar (lambda (cv)
+ (mapcar (lambda (cv)
(vector (car cv)
`(lambda () (interactive)
(customize-variable (quote ,(cadr cv))))))
@@ -1249,7 +1249,7 @@ Commands available are:
:help "Copy presentation form of text from buffer, converting tokens to Unicode"]
["Paste From Unicode" unicode-tokens-paste
:active (and kill-ring (not buffer-read-only))
- :help
+ :help
"Paste from clipboard, converting Unicode to tokens where possible"]
["Replace Shortcuts" unicode-tokens-replace-shortcuts
:help "Query-replace shortcut sequences with tokens they expand to"]