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
88d9af06
Commit
88d9af06
authored
Apr 13, 2000
by
Dave Love
Browse files
(keywordp): Remove.
parent
cf6bc7c3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
3 deletions
+0
-3
lisp/emacs-lisp/cl-compat.el
lisp/emacs-lisp/cl-compat.el
+0
-3
No files found.
lisp/emacs-lisp/cl-compat.el
View file @
88d9af06
...
@@ -54,9 +54,6 @@
...
@@ -54,9 +54,6 @@
(
defmacro
defkeyword
(
x
&optional
doc
)
(
defmacro
defkeyword
(
x
&optional
doc
)
(
list*
'defconst
x
(
list
'quote
x
)
(
and
doc
(
list
doc
))))
(
list*
'defconst
x
(
list
'quote
x
)
(
and
doc
(
list
doc
))))
(
defun
keywordp
(
sym
)
(
and
(
symbolp
sym
)
(
eq
(
aref
(
symbol-name
sym
)
0
)
?\:
)
(
set
sym
sym
)))
(
defun
keyword-of
(
sym
)
(
defun
keyword-of
(
sym
)
(
or
(
keywordp
sym
)
(
keywordp
(
intern
(
format
":%s"
sym
)))))
(
or
(
keywordp
sym
)
(
keywordp
(
intern
(
format
":%s"
sym
)))))
...
...
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