Mercurial > emacs
annotate lisp/pcmpl-unix.el @ 112442:76fa839f455e
* Makefile.in (MAKEINFO): Now controlled by `configure'.
(MAKEINFO_OPTS): New variable. Use it where appropriate.
(ENVADD): New variable to control texi2dvi and texi2pdf.
author | Werner Lemberg <wl@gnu.org> |
---|---|
date | Sun, 23 Jan 2011 11:22:21 +0100 |
parents | c04fdfa95f79 |
children |
rev | line source |
---|---|
38414
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
29959
diff
changeset
|
1 ;;; pcmpl-unix.el --- standard UNIX completions |
29959 | 2 |
74442 | 3 ;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, |
112218
376148b31b5e
Add 2011 to FSF/AIST copyright years.
Glenn Morris <rgm@gnu.org>
parents:
106869
diff
changeset
|
4 ;; 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. |
29959 | 5 |
110015
280c8ae2476d
Add "Package:" file headers to denote built-in packages.
Chong Yidong <cyd@stupidchicken.com>
parents:
106869
diff
changeset
|
6 ;; Package: pcomplete |
280c8ae2476d
Add "Package:" file headers to denote built-in packages.
Chong Yidong <cyd@stupidchicken.com>
parents:
106869
diff
changeset
|
7 |
29959 | 8 ;; This file is part of GNU Emacs. |
9 | |
94678
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
91644
diff
changeset
|
10 ;; GNU Emacs is free software: you can redistribute it and/or modify |
29959 | 11 ;; it under the terms of the GNU General Public License as published by |
94678
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
91644
diff
changeset
|
12 ;; the Free Software Foundation, either version 3 of the License, or |
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
91644
diff
changeset
|
13 ;; (at your option) any later version. |
29959 | 14 |
15 ;; GNU Emacs is distributed in the hope that it will be useful, | |
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 ;; GNU General Public License for more details. | |
19 | |
20 ;; You should have received a copy of the GNU General Public License | |
94678
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
91644
diff
changeset
|
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
29959 | 22 |
38414
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
29959
diff
changeset
|
23 ;;; Commentary: |
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
29959
diff
changeset
|
24 |
29959 | 25 ;;; Code: |
26 | |
27 (require 'pcomplete) | |
28 | |
29 ;; User Variables: | |
30 | |
31 (defcustom pcmpl-unix-group-file "/etc/group" | |
91644
681a1b7488c2
(top-level): Move provide statement to end.
Glenn Morris <rgm@gnu.org>
parents:
91643
diff
changeset
|
32 "If non-nil, a string naming the group file on your system." |
681a1b7488c2
(top-level): Move provide statement to end.
Glenn Morris <rgm@gnu.org>
parents:
91643
diff
changeset
|
33 :type '(choice file (const nil)) |
29959 | 34 :group 'pcmpl-unix) |
35 | |
36 (defcustom pcmpl-unix-passwd-file "/etc/passwd" | |
91644
681a1b7488c2
(top-level): Move provide statement to end.
Glenn Morris <rgm@gnu.org>
parents:
91643
diff
changeset
|
37 "If non-nil, a string naming the passwd file on your system." |
681a1b7488c2
(top-level): Move provide statement to end.
Glenn Morris <rgm@gnu.org>
parents:
91643
diff
changeset
|
38 :type '(choice file (const nil)) |
29959 | 39 :group 'pcmpl-unix) |
40 | |
91643
d3922949ea68
Phil Hagelberg <phil at evri.com>
Glenn Morris <rgm@gnu.org>
parents:
79721
diff
changeset
|
41 (defcustom pcmpl-ssh-known-hosts-file "~/.ssh/known_hosts" |
91644
681a1b7488c2
(top-level): Move provide statement to end.
Glenn Morris <rgm@gnu.org>
parents:
91643
diff
changeset
|
42 "If non-nil, a string naming your SSH \"known_hosts\" file. |
112405
c04fdfa95f79
Add pcomplete support for hosts defined in .ssh/config.
Chong Yidong <cyd@stupidchicken.com>
parents:
112278
diff
changeset
|
43 This allows one method of completion of SSH host names, the other |
c04fdfa95f79
Add pcomplete support for hosts defined in .ssh/config.
Chong Yidong <cyd@stupidchicken.com>
parents:
112278
diff
changeset
|
44 being via `pcmpl-ssh-config-file'. Note that newer versions of |
c04fdfa95f79
Add pcomplete support for hosts defined in .ssh/config.
Chong Yidong <cyd@stupidchicken.com>
parents:
112278
diff
changeset
|
45 ssh hash the hosts by default, to prevent Island-hopping SSH |
c04fdfa95f79
Add pcomplete support for hosts defined in .ssh/config.
Chong Yidong <cyd@stupidchicken.com>
parents:
112278
diff
changeset
|
46 attacks. This can be disabled, at some risk, with the SSH option |
c04fdfa95f79
Add pcomplete support for hosts defined in .ssh/config.
Chong Yidong <cyd@stupidchicken.com>
parents:
112278
diff
changeset
|
47 \"HashKnownHosts no\"." |
91644
681a1b7488c2
(top-level): Move provide statement to end.
Glenn Morris <rgm@gnu.org>
parents:
91643
diff
changeset
|
48 :type '(choice file (const nil)) |
681a1b7488c2
(top-level): Move provide statement to end.
Glenn Morris <rgm@gnu.org>
parents:
91643
diff
changeset
|
49 :group 'pcmpl-unix |
681a1b7488c2
(top-level): Move provide statement to end.
Glenn Morris <rgm@gnu.org>
parents:
91643
diff
changeset
|
50 :version "23.1") |
91643
d3922949ea68
Phil Hagelberg <phil at evri.com>
Glenn Morris <rgm@gnu.org>
parents:
79721
diff
changeset
|
51 |
112405
c04fdfa95f79
Add pcomplete support for hosts defined in .ssh/config.
Chong Yidong <cyd@stupidchicken.com>
parents:
112278
diff
changeset
|
52 (defcustom pcmpl-ssh-config-file "~/.ssh/config" |
c04fdfa95f79
Add pcomplete support for hosts defined in .ssh/config.
Chong Yidong <cyd@stupidchicken.com>
parents:
112278
diff
changeset
|
53 "If non-nil, a string naming your SSH \"config\" file. |
c04fdfa95f79
Add pcomplete support for hosts defined in .ssh/config.
Chong Yidong <cyd@stupidchicken.com>
parents:
112278
diff
changeset
|
54 This allows one method of completion of SSH host names, the other |
c04fdfa95f79
Add pcomplete support for hosts defined in .ssh/config.
Chong Yidong <cyd@stupidchicken.com>
parents:
112278
diff
changeset
|
55 being via `pcmpl-ssh-known-hosts-file'." |
c04fdfa95f79
Add pcomplete support for hosts defined in .ssh/config.
Chong Yidong <cyd@stupidchicken.com>
parents:
112278
diff
changeset
|
56 :type '(choice file (const nil)) |
c04fdfa95f79
Add pcomplete support for hosts defined in .ssh/config.
Chong Yidong <cyd@stupidchicken.com>
parents:
112278
diff
changeset
|
57 :group 'pcmpl-unix |
c04fdfa95f79
Add pcomplete support for hosts defined in .ssh/config.
Chong Yidong <cyd@stupidchicken.com>
parents:
112278
diff
changeset
|
58 :version "24.1") |
c04fdfa95f79
Add pcomplete support for hosts defined in .ssh/config.
Chong Yidong <cyd@stupidchicken.com>
parents:
112278
diff
changeset
|
59 |
29959 | 60 ;; Functions: |
61 | |
62 ;;;###autoload | |
63 (defun pcomplete/cd () | |
64 "Completion for `cd'." | |
106360
33815099ecfc
(pcomplete/cd): Complete more than one argument, just in case.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
65 (while (pcomplete-here (pcomplete-dirs)))) |
29959 | 66 |
67 ;;;###autoload | |
68 (defalias 'pcomplete/pushd 'pcomplete/cd) | |
69 | |
70 ;;;###autoload | |
71 (defun pcomplete/rmdir () | |
72 "Completion for `rmdir'." | |
73 (while (pcomplete-here (pcomplete-dirs)))) | |
74 | |
75 ;;;###autoload | |
76 (defun pcomplete/rm () | |
77 "Completion for `rm'." | |
78 (let ((pcomplete-help "(fileutils)rm invocation")) | |
79 (pcomplete-opt "dfirRv") | |
80 (while (pcomplete-here (pcomplete-all-entries) nil | |
81 'expand-file-name)))) | |
82 | |
83 ;;;###autoload | |
84 (defun pcomplete/xargs () | |
85 "Completion for `xargs'." | |
86 (pcomplete-here (funcall pcomplete-command-completion-function)) | |
87 (funcall (or (pcomplete-find-completion-function (pcomplete-arg 1)) | |
88 pcomplete-default-completion-function))) | |
89 | |
90 ;;;###autoload | |
91 (defalias 'pcomplete/time 'pcomplete/xargs) | |
92 | |
93 ;;;###autoload | |
94 (defun pcomplete/which () | |
95 "Completion for `which'." | |
96 (while (pcomplete-here (funcall pcomplete-command-completion-function)))) | |
97 | |
98 (defun pcmpl-unix-read-passwd-file (file) | |
106869
54435fbb4206
* pcmpl-unix.el (pcmpl-unix-read-passwd-file): Doc fix.
Chong Yidong <cyd@stupidchicken.com>
parents:
106815
diff
changeset
|
99 "Return an alist correlating gids to group names in FILE. |
54435fbb4206
* pcmpl-unix.el (pcmpl-unix-read-passwd-file): Doc fix.
Chong Yidong <cyd@stupidchicken.com>
parents:
106815
diff
changeset
|
100 |
54435fbb4206
* pcmpl-unix.el (pcmpl-unix-read-passwd-file): Doc fix.
Chong Yidong <cyd@stupidchicken.com>
parents:
106815
diff
changeset
|
101 If FILE is in hashed format (as described in the OpenSSH |
54435fbb4206
* pcmpl-unix.el (pcmpl-unix-read-passwd-file): Doc fix.
Chong Yidong <cyd@stupidchicken.com>
parents:
106815
diff
changeset
|
102 documentation), this function returns nil." |
29959 | 103 (let (names) |
104 (when (file-readable-p file) | |
105 (with-temp-buffer | |
106 (insert-file-contents file) | |
107 (goto-char (point-min)) | |
108 (while (not (eobp)) | |
109 (let* ((fields | |
110 (split-string (buffer-substring | |
111 (point) (progn (end-of-line) | |
112 (point))) ":"))) | |
113 (setq names (cons (nth 0 fields) names))) | |
114 (forward-line)))) | |
115 (pcomplete-uniqify-list names))) | |
116 | |
117 (defsubst pcmpl-unix-group-names () | |
118 "Read the contents of /etc/group for group names." | |
119 (if pcmpl-unix-group-file | |
120 (pcmpl-unix-read-passwd-file pcmpl-unix-group-file))) | |
121 | |
122 (defsubst pcmpl-unix-user-names () | |
123 "Read the contents of /etc/passwd for user names." | |
124 (if pcmpl-unix-passwd-file | |
125 (pcmpl-unix-read-passwd-file pcmpl-unix-passwd-file))) | |
126 | |
127 ;;;###autoload | |
128 (defun pcomplete/chown () | |
129 "Completion for the `chown' command." | |
130 (unless (pcomplete-match "\\`-") | |
131 (if (pcomplete-match "\\`[^.]*\\'" 0) | |
132 (pcomplete-here* (pcmpl-unix-user-names)) | |
133 (if (pcomplete-match "\\.\\([^.]*\\)\\'" 0) | |
134 (pcomplete-here* (pcmpl-unix-group-names) | |
135 (pcomplete-match-string 1 0)) | |
136 (pcomplete-here*)))) | |
137 (while (pcomplete-here (pcomplete-entries)))) | |
138 | |
139 ;;;###autoload | |
140 (defun pcomplete/chgrp () | |
141 "Completion for the `chgrp' command." | |
142 (unless (pcomplete-match "\\`-") | |
143 (pcomplete-here* (pcmpl-unix-group-names))) | |
144 (while (pcomplete-here (pcomplete-entries)))) | |
145 | |
91644
681a1b7488c2
(top-level): Move provide statement to end.
Glenn Morris <rgm@gnu.org>
parents:
91643
diff
changeset
|
146 |
91643
d3922949ea68
Phil Hagelberg <phil at evri.com>
Glenn Morris <rgm@gnu.org>
parents:
79721
diff
changeset
|
147 ;; ssh support by Phil Hagelberg. |
d3922949ea68
Phil Hagelberg <phil at evri.com>
Glenn Morris <rgm@gnu.org>
parents:
79721
diff
changeset
|
148 ;; http://www.emacswiki.org/cgi-bin/wiki/pcmpl-ssh.el |
d3922949ea68
Phil Hagelberg <phil at evri.com>
Glenn Morris <rgm@gnu.org>
parents:
79721
diff
changeset
|
149 |
112405
c04fdfa95f79
Add pcomplete support for hosts defined in .ssh/config.
Chong Yidong <cyd@stupidchicken.com>
parents:
112278
diff
changeset
|
150 (defun pcmpl-ssh-known-hosts () |
91644
681a1b7488c2
(top-level): Move provide statement to end.
Glenn Morris <rgm@gnu.org>
parents:
91643
diff
changeset
|
151 "Return a list of hosts found in `pcmpl-ssh-known-hosts-file'." |
681a1b7488c2
(top-level): Move provide statement to end.
Glenn Morris <rgm@gnu.org>
parents:
91643
diff
changeset
|
152 (when (and pcmpl-ssh-known-hosts-file |
681a1b7488c2
(top-level): Move provide statement to end.
Glenn Morris <rgm@gnu.org>
parents:
91643
diff
changeset
|
153 (file-readable-p pcmpl-ssh-known-hosts-file)) |
681a1b7488c2
(top-level): Move provide statement to end.
Glenn Morris <rgm@gnu.org>
parents:
91643
diff
changeset
|
154 (with-temp-buffer |
681a1b7488c2
(top-level): Move provide statement to end.
Glenn Morris <rgm@gnu.org>
parents:
91643
diff
changeset
|
155 (insert-file-contents-literally pcmpl-ssh-known-hosts-file) |
681a1b7488c2
(top-level): Move provide statement to end.
Glenn Morris <rgm@gnu.org>
parents:
91643
diff
changeset
|
156 (let (ssh-hosts-list) |
681a1b7488c2
(top-level): Move provide statement to end.
Glenn Morris <rgm@gnu.org>
parents:
91643
diff
changeset
|
157 (while (re-search-forward "^ *\\([-.[:alnum:]]+\\)[, ]" nil t) |
681a1b7488c2
(top-level): Move provide statement to end.
Glenn Morris <rgm@gnu.org>
parents:
91643
diff
changeset
|
158 (add-to-list 'ssh-hosts-list (match-string 1)) |
681a1b7488c2
(top-level): Move provide statement to end.
Glenn Morris <rgm@gnu.org>
parents:
91643
diff
changeset
|
159 (while (and (looking-back ",") |
681a1b7488c2
(top-level): Move provide statement to end.
Glenn Morris <rgm@gnu.org>
parents:
91643
diff
changeset
|
160 (re-search-forward "\\([-.[:alnum:]]+\\)[, ]" |
681a1b7488c2
(top-level): Move provide statement to end.
Glenn Morris <rgm@gnu.org>
parents:
91643
diff
changeset
|
161 (line-end-position) t)) |
681a1b7488c2
(top-level): Move provide statement to end.
Glenn Morris <rgm@gnu.org>
parents:
91643
diff
changeset
|
162 (add-to-list 'ssh-hosts-list (match-string 1)))) |
681a1b7488c2
(top-level): Move provide statement to end.
Glenn Morris <rgm@gnu.org>
parents:
91643
diff
changeset
|
163 ssh-hosts-list)))) |
91643
d3922949ea68
Phil Hagelberg <phil at evri.com>
Glenn Morris <rgm@gnu.org>
parents:
79721
diff
changeset
|
164 |
112405
c04fdfa95f79
Add pcomplete support for hosts defined in .ssh/config.
Chong Yidong <cyd@stupidchicken.com>
parents:
112278
diff
changeset
|
165 (defun pcmpl-ssh-config-hosts () |
c04fdfa95f79
Add pcomplete support for hosts defined in .ssh/config.
Chong Yidong <cyd@stupidchicken.com>
parents:
112278
diff
changeset
|
166 "Return a list of hosts found in `pcmpl-ssh-config-file'." |
c04fdfa95f79
Add pcomplete support for hosts defined in .ssh/config.
Chong Yidong <cyd@stupidchicken.com>
parents:
112278
diff
changeset
|
167 (when (and pcmpl-ssh-config-file |
c04fdfa95f79
Add pcomplete support for hosts defined in .ssh/config.
Chong Yidong <cyd@stupidchicken.com>
parents:
112278
diff
changeset
|
168 (file-readable-p pcmpl-ssh-config-file)) |
c04fdfa95f79
Add pcomplete support for hosts defined in .ssh/config.
Chong Yidong <cyd@stupidchicken.com>
parents:
112278
diff
changeset
|
169 (with-temp-buffer |
c04fdfa95f79
Add pcomplete support for hosts defined in .ssh/config.
Chong Yidong <cyd@stupidchicken.com>
parents:
112278
diff
changeset
|
170 (insert-file-contents-literally pcmpl-ssh-config-file) |
c04fdfa95f79
Add pcomplete support for hosts defined in .ssh/config.
Chong Yidong <cyd@stupidchicken.com>
parents:
112278
diff
changeset
|
171 (let (ssh-hosts-list |
c04fdfa95f79
Add pcomplete support for hosts defined in .ssh/config.
Chong Yidong <cyd@stupidchicken.com>
parents:
112278
diff
changeset
|
172 (case-fold-search t)) |
c04fdfa95f79
Add pcomplete support for hosts defined in .ssh/config.
Chong Yidong <cyd@stupidchicken.com>
parents:
112278
diff
changeset
|
173 (while (re-search-forward "^ *host\\(name\\)? +\\([-.[:alnum:]]+\\)" |
c04fdfa95f79
Add pcomplete support for hosts defined in .ssh/config.
Chong Yidong <cyd@stupidchicken.com>
parents:
112278
diff
changeset
|
174 nil t) |
c04fdfa95f79
Add pcomplete support for hosts defined in .ssh/config.
Chong Yidong <cyd@stupidchicken.com>
parents:
112278
diff
changeset
|
175 (add-to-list 'ssh-hosts-list (match-string 2))) |
c04fdfa95f79
Add pcomplete support for hosts defined in .ssh/config.
Chong Yidong <cyd@stupidchicken.com>
parents:
112278
diff
changeset
|
176 ssh-hosts-list)))) |
c04fdfa95f79
Add pcomplete support for hosts defined in .ssh/config.
Chong Yidong <cyd@stupidchicken.com>
parents:
112278
diff
changeset
|
177 |
c04fdfa95f79
Add pcomplete support for hosts defined in .ssh/config.
Chong Yidong <cyd@stupidchicken.com>
parents:
112278
diff
changeset
|
178 (defun pcmpl-ssh-hosts () |
c04fdfa95f79
Add pcomplete support for hosts defined in .ssh/config.
Chong Yidong <cyd@stupidchicken.com>
parents:
112278
diff
changeset
|
179 "Return a list of known SSH hosts. |
c04fdfa95f79
Add pcomplete support for hosts defined in .ssh/config.
Chong Yidong <cyd@stupidchicken.com>
parents:
112278
diff
changeset
|
180 Uses both `pcmpl-ssh-config-file' and `pcmpl-ssh-known-hosts-file'." |
c04fdfa95f79
Add pcomplete support for hosts defined in .ssh/config.
Chong Yidong <cyd@stupidchicken.com>
parents:
112278
diff
changeset
|
181 (let ((hosts (pcmpl-ssh-known-hosts))) |
c04fdfa95f79
Add pcomplete support for hosts defined in .ssh/config.
Chong Yidong <cyd@stupidchicken.com>
parents:
112278
diff
changeset
|
182 (dolist (h (pcmpl-ssh-config-hosts)) |
c04fdfa95f79
Add pcomplete support for hosts defined in .ssh/config.
Chong Yidong <cyd@stupidchicken.com>
parents:
112278
diff
changeset
|
183 (add-to-list 'hosts h)) |
c04fdfa95f79
Add pcomplete support for hosts defined in .ssh/config.
Chong Yidong <cyd@stupidchicken.com>
parents:
112278
diff
changeset
|
184 hosts)) |
c04fdfa95f79
Add pcomplete support for hosts defined in .ssh/config.
Chong Yidong <cyd@stupidchicken.com>
parents:
112278
diff
changeset
|
185 |
91643
d3922949ea68
Phil Hagelberg <phil at evri.com>
Glenn Morris <rgm@gnu.org>
parents:
79721
diff
changeset
|
186 ;;;###autoload |
d3922949ea68
Phil Hagelberg <phil at evri.com>
Glenn Morris <rgm@gnu.org>
parents:
79721
diff
changeset
|
187 (defun pcomplete/ssh () |
d3922949ea68
Phil Hagelberg <phil at evri.com>
Glenn Morris <rgm@gnu.org>
parents:
79721
diff
changeset
|
188 "Completion rules for the `ssh' command." |
d3922949ea68
Phil Hagelberg <phil at evri.com>
Glenn Morris <rgm@gnu.org>
parents:
79721
diff
changeset
|
189 (pcomplete-opt "1246AaCfgKkMNnqsTtVvXxYbcDeFiLlmOopRSw" nil t) |
d3922949ea68
Phil Hagelberg <phil at evri.com>
Glenn Morris <rgm@gnu.org>
parents:
79721
diff
changeset
|
190 (pcomplete-here (pcmpl-ssh-hosts))) |
d3922949ea68
Phil Hagelberg <phil at evri.com>
Glenn Morris <rgm@gnu.org>
parents:
79721
diff
changeset
|
191 |
d3922949ea68
Phil Hagelberg <phil at evri.com>
Glenn Morris <rgm@gnu.org>
parents:
79721
diff
changeset
|
192 ;;;###autoload |
d3922949ea68
Phil Hagelberg <phil at evri.com>
Glenn Morris <rgm@gnu.org>
parents:
79721
diff
changeset
|
193 (defun pcomplete/scp () |
d3922949ea68
Phil Hagelberg <phil at evri.com>
Glenn Morris <rgm@gnu.org>
parents:
79721
diff
changeset
|
194 "Completion rules for the `scp' command. |
d3922949ea68
Phil Hagelberg <phil at evri.com>
Glenn Morris <rgm@gnu.org>
parents:
79721
diff
changeset
|
195 Includes files as well as host names followed by a colon." |
d3922949ea68
Phil Hagelberg <phil at evri.com>
Glenn Morris <rgm@gnu.org>
parents:
79721
diff
changeset
|
196 (pcomplete-opt "1246BCpqrvcFiloPS") |
d3922949ea68
Phil Hagelberg <phil at evri.com>
Glenn Morris <rgm@gnu.org>
parents:
79721
diff
changeset
|
197 (while t (pcomplete-here (append (pcomplete-all-entries) |
91644
681a1b7488c2
(top-level): Move provide statement to end.
Glenn Morris <rgm@gnu.org>
parents:
91643
diff
changeset
|
198 (mapcar (lambda (host) |
681a1b7488c2
(top-level): Move provide statement to end.
Glenn Morris <rgm@gnu.org>
parents:
91643
diff
changeset
|
199 (concat host ":")) |
681a1b7488c2
(top-level): Move provide statement to end.
Glenn Morris <rgm@gnu.org>
parents:
91643
diff
changeset
|
200 (pcmpl-ssh-hosts)))))) |
91643
d3922949ea68
Phil Hagelberg <phil at evri.com>
Glenn Morris <rgm@gnu.org>
parents:
79721
diff
changeset
|
201 |
91644
681a1b7488c2
(top-level): Move provide statement to end.
Glenn Morris <rgm@gnu.org>
parents:
91643
diff
changeset
|
202 (provide 'pcmpl-unix) |
91643
d3922949ea68
Phil Hagelberg <phil at evri.com>
Glenn Morris <rgm@gnu.org>
parents:
79721
diff
changeset
|
203 |
29959 | 204 ;;; pcmpl-unix.el ends here |