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
emacs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
emacs
emacs
Commits
9133b82e
Commit
9133b82e
authored
Jun 01, 2013
by
Glenn Morris
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* lisp/pcmpl-gnu.el (pcomplete/tar): Check obsolete variable is bound.
parent
02c992ec
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
lisp/ChangeLog
lisp/ChangeLog
+2
-0
lisp/pcmpl-gnu.el
lisp/pcmpl-gnu.el
+2
-1
No files found.
lisp/ChangeLog
View file @
9133b82e
2013-06-01 Glenn Morris <rgm@gnu.org>
* pcmpl-gnu.el (pcomplete/tar): Check obsolete variable is bound.
Plain (f)boundp silences compilation warnings since Emacs 22.1.
* progmodes/cc-cmds.el (delete-forward-p):
* progmodes/cc-defs.el (buffer-syntactic-context-depth):
...
...
lisp/pcmpl-gnu.el
View file @
9133b82e
...
...
@@ -158,7 +158,8 @@
"Completion for the GNU tar utility."
;; options that end in an equal sign will want further completion...
(
let
(
saw-option
complete-within
)
(
let
((
pcomplete-suffix-list
(
cons
?=
pcomplete-suffix-list
)))
(
let
((
pcomplete-suffix-list
(
if
(
boundp
'pcomplete-suffix-list
)
(
cons
?=
pcomplete-suffix-list
))))
(
while
(
pcomplete-match
"^-"
0
)
(
setq
saw-option
t
)
(
if
(
pcomplete-match
"^--"
0
)
...
...
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