* javascript.el (wisent-javascript-jv-expand-tag): Avoid c(ad)ddr
and use c(ad)r of cddr (Bug#5640).
This commit is contained in:
parent
daf4b83bd5
commit
6583ba0ea5
2 changed files with 7 additions and 2 deletions
|
|
@ -1,3 +1,8 @@
|
|||
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
|
||||
|
|
|
|||
|
|
@ -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 (car (cddr elt)) (semantic-tag-start tag))
|
||||
end (if xpand (cdr (cddr elt)) (semantic-tag-end tag))
|
||||
xpand (cons clone xpand))
|
||||
;; Set the definition of the cloned tag
|
||||
(semantic-tag-put-attribute clone :default-value value)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue