Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
8fa39615
Commit
8fa39615
authored
Jul 04, 2011
by
Stefan Monnier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* lisp/pcmpl-linux.el (pcomplete-pare-list): Re-add, from pcomplete.el.
Fixes: debbugs:8958
parent
2f11b3f1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
0 deletions
+18
-0
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/pcmpl-linux.el
lisp/pcmpl-linux.el
+13
-0
No files found.
lisp/ChangeLog
View file @
8fa39615
2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
* pcmpl-linux.el (pcomplete-pare-list): Re-add, from pcomplete.el
(bug#8958).
2011-07-04 Chong Yidong <cyd@stupidchicken.com>
* font-lock.el (font-lock-builtin-face): Change light background
...
...
lisp/pcmpl-linux.el
View file @
8fa39615
...
...
@@ -83,6 +83,19 @@
(
forward-line
)))
(
pcomplete-uniqify-list
points
))))
(
defun
pcomplete-pare-list
(
l
r
)
"Destructively remove from list L all elements matching any in list R.
Test is done using `equal'."
(
while
(
and
l
(
and
r
(
member
(
car
l
)
r
)))
(
setq
l
(
cdr
l
)))
(
let
((
m
l
))
(
while
m
(
while
(
and
(
cdr
m
)
(
and
r
(
member
(
cadr
m
)
r
)))
(
setcdr
m
(
cddr
m
)))
(
setq
m
(
cdr
m
))))
l
)
(
defun
pcmpl-linux-mountable-directories
()
"Return a list of mountable directory names."
(
let
(
points
)
...
...
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