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
99439846
Commit
99439846
authored
Nov 20, 2004
by
Vinicius Jose Latorre
Browse files
eval-and-compile
parent
ad96a7ef
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
13 deletions
+12
-13
lisp/ChangeLog
lisp/ChangeLog
+1
-1
lisp/progmodes/ebnf2ps.el
lisp/progmodes/ebnf2ps.el
+11
-12
No files found.
lisp/ChangeLog
View file @
99439846
2004-11-19 Vinicius Jose Latorre
<viniciusjl
@
ig.com.br
>
* progmodes/ebnf2ps.el: Fix typos. Insert :version tag into all
defgroup and defcustom.
defgroup and defcustom.
Eliminate eval-and-compile usage.
* progmodes/ebnf-otz.el: Fix typos.
...
...
lisp/progmodes/ebnf2ps.el
View file @
99439846
...
...
@@ -5,7 +5,7 @@
;; Author: Vinicius Jose Latorre <viniciusjl@ig.com.br>
;; Maintainer: Vinicius Jose Latorre <viniciusjl@ig.com.br>
;; Time-stamp: <2004/11/19 22:
24:27
vinicius>
;; Time-stamp: <2004/11/19 22:
30:34
vinicius>
;; Keywords: wp, ebnf, PostScript
;; Version: 4.2
;; X-URL: http://www.cpqd.com.br/~vinicius/emacs/
...
...
@@ -1114,19 +1114,18 @@ Please send all bug fixes and enhancements to
;; to avoid gripes with Emacs 20
(
eval-and-compile
(
or
(
fboundp
'assq-delete-all
)
(
defun
assq-delete-all
(
key
alist
)
"Delete from ALIST all elements whose car is KEY.
(
or
(
fboundp
'assq-delete-all
)
(
defun
assq-delete-all
(
key
alist
)
"Delete from ALIST all elements whose car is KEY.
Return the modified alist.
Elements of ALIST that are not conses are ignored."
(
let
((
tail
alist
))
(
while
tail
(
if
(
and
(
consp
(
car
tail
))
(
eq
(
car
(
car
tail
))
key
))
(
setq
alist
(
delq
(
car
tail
)
alist
)))
(
setq
tail
(
cdr
tail
)))
alist
)))
)
(
let
((
tail
alist
))
(
while
tail
(
if
(
and
(
consp
(
car
tail
))
(
eq
(
car
(
car
tail
))
key
))
(
setq
alist
(
delq
(
car
tail
)
alist
)))
(
setq
tail
(
cdr
tail
)))
alist
)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
...
...
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