Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
35f111ba
Commit
35f111ba
authored
Sep 03, 2006
by
Juri Linkov
Browse files
(quail-defrule-internal): Add a check if a key is a vector.
parent
6a8c7cfe
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/international/quail.el
lisp/international/quail.el
+1
-1
No files found.
lisp/ChangeLog
View file @
35f111ba
2006-09-03 Juri Linkov <juri@jurta.org>
* international/quail.el (quail-defrule-internal): Add a check
if a key is a vector.
2006-09-02 Juri Linkov <juri@jurta.org>
* man.el (Man-topic-history): New variable.
...
...
lisp/international/quail.el
View file @
35f111ba
...
...
@@ -1095,7 +1095,7 @@ Optional 5th arg DECODE-MAP is a Quail decode map.
Optional 6th arg PROPS is a property list annotating TRANS. See the
function `quail-define-rules' for the detail."
(if (n
ull
(stringp key))
(if (n
ot (or
(stringp key)
(vectorp key))
)
(error "Invalid Quail key `%s'" key))
(if (not (or (numberp trans) (stringp trans) (vectorp trans)
(consp trans)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment