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
6583ba0e
Commit
6583ba0e
authored
Feb 24, 2010
by
Chong Yidong
Browse files
* javascript.el (wisent-javascript-jv-expand-tag): Avoid c(ad)ddr
and use c(ad)r of cddr (Bug#5640).
parent
daf4b83b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/cedet/semantic/wisent/javascript.el
lisp/cedet/semantic/wisent/javascript.el
+2
-2
No files found.
lisp/ChangeLog
View file @
6583ba0e
2010-02-24 Eduard Wiebe <usenet@pusto.de>
* javascript.el (wisent-javascript-jv-expand-tag): Avoid c(ad)ddr
and use c(ad)r of cddr (Bug#5640).
2010-02-22 Michael Albinus <michael.albinus@gmx.de>
* net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Protect
...
...
lisp/cedet/semantic/wisent/javascript.el
View file @
6583ba0e
...
...
@@ -48,8 +48,8 @@ to this variable NAME."
elts
(
cdr
elts
)
clone
(
semantic-tag-clone
tag
(
car
elt
))
value
(
car
(
cdr
elt
))
start
(
if
elts
(
caddr
elt
)
(
semantic-tag-start
tag
))
end
(
if
xpand
(
cdddr
elt
)
(
semantic-tag-end
tag
))
start
(
if
elts
(
ca
r
(
c
ddr
elt
)
)
(
semantic-tag-start
tag
))
end
(
if
xpand
(
cd
r
(
c
ddr
elt
)
)
(
semantic-tag-end
tag
))
xpand
(
cons
clone
xpand
))
;; Set the definition of the cloned tag
(
semantic-tag-put-attribute
clone
:default-value
value
)
...
...
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