Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file added Linux64/lib/eusmap
Empty file.
1 change: 1 addition & 0 deletions include
1 change: 1 addition & 0 deletions lisp/Makefile
4 changes: 3 additions & 1 deletion lisp/l/common.l
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,9 @@
if pos is bigger than the length of list, item is nconc'ed at the tail"
(cond ((null list) (list item))
((>= pos (length list)) (nconc list (list item)))
((= pos 0) (cons item list))
((= pos 0) (nreverse list)
(nconc list (list item))
(nreverse list))
(t (let ((tail (cons item (nthcdr pos list))))
(rplacd (nthcdr (1- pos) list) tail)
list))))
Expand Down
Loading