Mercurial > emacs
annotate lisp/vms-patch.el @ 94437:7780b9720eb9
* tramp.texi (Frequently Asked Questions): Explain, how to disable
Tramp via `tramp-mode'.
author | Michael Albinus <michael.albinus@gmx.de> |
---|---|
date | Mon, 28 Apr 2008 19:40:26 +0000 |
parents | 1e3a407766b9 |
children | ee5932bf781d |
rev | line source |
---|---|
86503
2c08ad76fc1f
* progmodes/cperl-mode.el (compilation-error-regexp-alist): Pacify
Dan Nicolaescu <dann@ics.uci.edu>
parents:
85510
diff
changeset
|
1 ;; -*- no-byte-compile: t -*- |
38412
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
31658
diff
changeset
|
2 ;;; vms-patch.el --- override parts of files.el for VMS |
657
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
156
diff
changeset
|
3 |
74442 | 4 ;; Copyright (C) 1986, 1992, 2001, 2002, 2003, 2004, |
79721 | 5 ;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc. |
840
113281b361ec
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
812
diff
changeset
|
6 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
657
diff
changeset
|
7 ;; Maintainer: FSF |
812
485e82a8acb5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
8 ;; Keywords: vms |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
657
diff
changeset
|
9 |
36 | 10 ;; This file is part of GNU Emacs. |
11 | |
12 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
13 ;; it under the terms of the GNU General Public License as published by | |
78236
9355f9b7bbff
Switch license to GPLv3 or later.
Glenn Morris <rgm@gnu.org>
parents:
75347
diff
changeset
|
14 ;; the Free Software Foundation; either version 3, or (at your option) |
36 | 15 ;; any later version. |
16 | |
17 ;; GNU Emacs is distributed in the hope that it will be useful, | |
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
20 ;; GNU General Public License for more details. | |
21 | |
22 ;; You should have received a copy of the GNU General Public License | |
14169 | 23 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
64091 | 24 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
25 ;; Boston, MA 02110-1301, USA. | |
36 | 26 |
38412
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
31658
diff
changeset
|
27 ;;; Commentary: |
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
31658
diff
changeset
|
28 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
657
diff
changeset
|
29 ;;; Code: |
36 | 30 |
85510
e2eac01cf548
* progmodes/prolog.el: Undo previous change.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
85478
diff
changeset
|
31 (defvar print-region-function) |
85478
786d3a985758
* term/x-win.el (x-gtk-stock-map, icon-map-list)
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78236
diff
changeset
|
32 |
17245
12e32a06de22
(auto-mode-alist): Add .com element.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
33 (setq auto-mode-alist (cons '(("\\.com\\'" . dcl-mode)) auto-mode-alist)) |
12e32a06de22
(auto-mode-alist): Add .com element.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
34 |
36 | 35 ;;; Functions that need redefinition |
36 | |
37 ;;; VMS file names are upper case, but buffer names are more | |
38 ;;; convenient in lower case. | |
39 | |
40 (defun create-file-buffer (filename) | |
41 "Create a suitably named buffer for visiting FILENAME, and return it. | |
42 FILENAME (sans directory) is used unchanged if that name is free; | |
43 otherwise a string <2> or <3> or ... is appended to get an unused name." | |
44 (generate-new-buffer (downcase (file-name-nondirectory filename)))) | |
45 | |
92529
7b55b0a875cc
(make-legal-file-name): New obsolete alias.
Juanma Barranquero <lekktu@gmail.com>
parents:
87649
diff
changeset
|
46 ;;; Given a string FN, return a similar name which is a valid VMS filename. |
36 | 47 ;;; This is used to avoid invalid auto save file names. |
92529
7b55b0a875cc
(make-legal-file-name): New obsolete alias.
Juanma Barranquero <lekktu@gmail.com>
parents:
87649
diff
changeset
|
48 (defun make-valid-file-name (fn) |
36 | 49 (setq fn (copy-sequence fn)) |
50 (let ((dot nil) (indx 0) (len (length fn)) chr) | |
51 (while (< indx len) | |
52 (setq chr (aref fn indx)) | |
53 (cond | |
54 ((eq chr ?.) (if dot (aset fn indx ?_) (setq dot t))) | |
55 ((not (or (and (>= chr ?a) (<= chr ?z)) (and (>= chr ?A) (<= chr ?Z)) | |
56 (and (>= chr ?0) (<= chr ?9)) | |
57 (eq chr ?$) (eq chr ?_) (and (eq chr ?-) (> indx 0)))) | |
58 (aset fn indx ?_))) | |
59 (setq indx (1+ indx)))) | |
60 fn) | |
61 | |
92529
7b55b0a875cc
(make-legal-file-name): New obsolete alias.
Juanma Barranquero <lekktu@gmail.com>
parents:
87649
diff
changeset
|
62 (define-obsolete-function-alias 'make-legal-file-name 'make-valid-file-name "23.1") |
7b55b0a875cc
(make-legal-file-name): New obsolete alias.
Juanma Barranquero <lekktu@gmail.com>
parents:
87649
diff
changeset
|
63 |
36 | 64 ;;; Auto save filesnames start with _$ and end with $. |
65 | |
66 (defun make-auto-save-file-name () | |
67 "Return file name to use for auto-saves of current buffer. | |
11045
b4bf1f2d99f8
(make-auto-save-file-name, auto-save-file-name-p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
2864
diff
changeset
|
68 This function does not consider `auto-save-visited-file-name'; |
b4bf1f2d99f8
(make-auto-save-file-name, auto-save-file-name-p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
2864
diff
changeset
|
69 the caller should check that before calling this function. |
b4bf1f2d99f8
(make-auto-save-file-name, auto-save-file-name-p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
2864
diff
changeset
|
70 This is a separate function so that your `.emacs' file or the site's |
b4bf1f2d99f8
(make-auto-save-file-name, auto-save-file-name-p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
2864
diff
changeset
|
71 `site-init.el' can redefine it. |
b4bf1f2d99f8
(make-auto-save-file-name, auto-save-file-name-p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
2864
diff
changeset
|
72 See also `auto-save-file-name-p'." |
36 | 73 (if buffer-file-name |
74 (concat (file-name-directory buffer-file-name) | |
75 "_$" | |
76 (file-name-nondirectory buffer-file-name) | |
77 "$") | |
92529
7b55b0a875cc
(make-legal-file-name): New obsolete alias.
Juanma Barranquero <lekktu@gmail.com>
parents:
87649
diff
changeset
|
78 (expand-file-name (concat "_$_" (make-valid-file-name (buffer-name)) "$")))) |
36 | 79 |
80 (defun auto-save-file-name-p (filename) | |
11045
b4bf1f2d99f8
(make-auto-save-file-name, auto-save-file-name-p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
2864
diff
changeset
|
81 "Return t if FILENAME can be yielded by `make-auto-save-file-name'. |
36 | 82 FILENAME should lack slashes. |
11045
b4bf1f2d99f8
(make-auto-save-file-name, auto-save-file-name-p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
2864
diff
changeset
|
83 This is a separate function so that your `.emacs' file or the site's |
b4bf1f2d99f8
(make-auto-save-file-name, auto-save-file-name-p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
2864
diff
changeset
|
84 `site-init.el' can redefine it." |
36 | 85 (string-match "^_\\$.*\\$" filename)) |
86 | |
1174 | 87 ;;; |
88 ;;; This goes along with kepteditor.com which defines these logicals | |
89 ;;; If EMACS_COMMAND_ARGS is defined, it supersedes EMACS_FILE_NAME, | |
90 ;;; which is probably set up incorrectly anyway. | |
91 ;;; The function command-line-again is a kludge, but it does the job. | |
92 ;;; | |
36 | 93 (defun vms-suspend-resume-hook () |
94 "When resuming suspended Emacs, check for file to be found. | |
95 If the logical name `EMACS_FILE_NAME' is defined, `find-file' that file." | |
1174 | 96 (let ((file (vms-system-info "LOGICAL" "EMACS_FILE_NAME")) |
97 (args (vms-system-info "LOGICAL" "EMACS_COMMAND_ARGS")) | |
98 (line (vms-system-info "LOGICAL" "EMACS_FILE_LINE"))) | |
99 (if (not args) | |
100 (if file | |
101 (progn (find-file file) | |
62402
a7e02ef1e3d6
Replace `string-to-int' by `string-to-number'.
Juanma Barranquero <lekktu@gmail.com>
parents:
52401
diff
changeset
|
102 (if line (goto-line (string-to-number line))))) |
1174 | 103 (cd (file-name-directory file)) |
104 (vms-command-line-again)))) | |
36 | 105 |
106 (setq suspend-resume-hook 'vms-suspend-resume-hook) | |
107 | |
108 (defun vms-suspend-hook () | |
109 "Don't allow suspending if logical name `DONT_SUSPEND_EMACS' is defined." | |
110 (if (vms-system-info "LOGICAL" "DONT_SUSPEND_EMACS") | |
111 (error "Can't suspend this emacs")) | |
112 nil) | |
113 | |
114 (setq suspend-hook 'vms-suspend-hook) | |
115 | |
1174 | 116 ;;; |
117 ;;; A kludge that allows reprocessing of the command line. This is mostly | |
118 ;;; to allow a spawned VMS mail process to do something reasonable when | |
119 ;;; used in conjunction with the modifications to sysdep.c that allow | |
120 ;;; Emacs to attach to a "foster" parent. | |
121 ;;; | |
122 (defun vms-command-line-again () | |
123 "Reprocess command line arguments. VMS specific. | |
124 Command line arguments are initialized from the logical EMACS_COMMAND_ARGS | |
125 which is defined by kepteditor.com. On VMS this allows attaching to a | |
126 spawned Emacs and doing things like \"emacs -l myfile.el -f doit\"" | |
127 (let* ((args (downcase (vms-system-info "LOGICAL" "EMACS_COMMAND_ARGS"))) | |
128 (command-line-args (list "emacs")) | |
129 (beg 0) | |
130 (end 0) | |
131 (len (length args)) | |
132 this-char) | |
133 (if args | |
134 (progn | |
135 ;;; replace non-printable stuff with spaces | |
136 (while (< beg (length args)) | |
137 (if (or (> 33 (setq this-char (aref args beg))) | |
138 (< 127 this-char)) | |
139 (aset args beg 32)) | |
140 (setq beg (1+ beg))) | |
141 (setq beg (1- (length args))) | |
142 (while (= 32 (aref args beg)) (setq beg (1- beg))) | |
143 (setq args (substring args 0 (1+ beg))) | |
144 (setq beg 0) | |
145 ;;; now start parsing args | |
146 (while (< beg (length args)) | |
147 (while (and (< beg (length args)) | |
148 (or (> 33 (setq this-char (aref args beg))) | |
149 (< 127 this-char)) | |
150 (setq beg (1+ beg)))) | |
151 (setq end (1+ beg)) | |
152 (while (and (< end (length args)) | |
153 (< 32 (setq this-char (aref args end))) | |
154 (> 127 this-char)) | |
155 (setq end (1+ end))) | |
49597
e88404e8f2cf
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
38412
diff
changeset
|
156 (setq command-line-args (append |
1174 | 157 command-line-args |
158 (list (substring args beg end)))) | |
159 (setq beg (1+ end))) | |
160 (command-line))))) | |
161 | |
36 | 162 (defun vms-read-directory (dirname switches buffer) |
163 (save-excursion | |
164 (set-buffer buffer) | |
165 (subprocess-command-to-buffer | |
166 (concat "DIRECTORY " switches " " dirname) | |
167 buffer) | |
168 (goto-char (point-min)) | |
169 ;; Remove all the trailing blanks. | |
170 (while (search-forward " \n") | |
171 (forward-char -1) | |
172 (delete-horizontal-space)) | |
173 (goto-char (point-min)))) | |
174 | |
175 (setq dired-listing-switches | |
176 "/SIZE/DATE/OWNER/WIDTH=(FILENAME=32,SIZE=5)") | |
156 | 177 |
178 (setq print-region-function | |
31658
d4105bd038d0
(print-region-function): Don't quote lambda.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
17245
diff
changeset
|
179 (lambda (start end command ign1 ign2 ign3 &rest switches) |
156 | 180 (write-region start end "sys$login:delete-me.txt") |
181 (send-command-to-subprocess | |
182 1 | |
183 (concat command | |
2864
9c3bf565b354
* bibtex.el (bibtex-string): Use \" instead of "" to get a double
Jim Blandy <jimb@redhat.com>
parents:
1174
diff
changeset
|
184 " sys$login:delete-me.txt/name=\"GNUprintbuffer\" " |
156 | 185 (mapconcat 'identity switches " ")) |
186 nil nil nil))) | |
657
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
156
diff
changeset
|
187 |
1174 | 188 ;;; |
189 ;;; Fuctions for using Emacs as a VMS Mail editor | |
190 ;;; | |
191 (autoload 'vms-pmail-setup "vms-pmail" | |
192 "Set up file assuming use by VMS Mail utility. | |
193 The buffer is put into text-mode, auto-save is turned off and the | |
194 following bindings are established. | |
195 | |
196 \\[vms-pmail-save-and-exit] vms-pmail-save-and-exit | |
197 \\[vms-pmail-abort] vms-pmail-abort | |
198 | |
199 All other Emacs commands are still available." | |
200 t) | |
201 | |
62700
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
202 ;;; |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
203 ;;; Filename handling in the minibuffer |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
204 ;;; |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
205 (defun vms-magic-right-square-brace () |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
206 "\ |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
207 Insert a right square brace, but do other things first depending on context. |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
208 During filename completion, when point is at the end of the line and the |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
209 character before is not a right square brace, do one of three things before |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
210 inserting the brace: |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
211 - If there are already two left square braces preceding, do nothing special. |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
212 - If there is a previous right-square-brace, convert it to dot. |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
213 - If the character before is dot, delete it. |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
214 Additionally, if the preceding chars are right-square-brace followed by |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
215 either \"-\" or \"..\", strip one level of directory hierarchy." |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
216 (interactive) |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
217 (when (and minibuffer-completing-file-name |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
218 (= (point) (point-max)) |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
219 (not (= 93 (char-before)))) |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
220 (cond |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
221 ;; Avoid clobbering: user:[one.path][another.path |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
222 ((search-backward "[" (field-beginning) t 2)) |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
223 ((search-backward "]" (field-beginning) t) |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
224 (delete-char 1) |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
225 (insert ".") |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
226 (goto-char (point-max))) |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
227 ((= ?. (char-before)) |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
228 (delete-char -1))) |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
229 (goto-char (point-max)) |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
230 (let ((specs '(".." "-")) |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
231 (pmax (point-max))) |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
232 (while specs |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
233 (let* ((up (car specs)) |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
234 (len (length up)) |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
235 (cut (- (point) len))) |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
236 (when (and (< (1+ len) pmax) |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
237 (= ?. (char-before cut)) |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
238 (string= up (buffer-substring cut (point)))) |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
239 (delete-char (- (1+ len))) |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
240 (while (not (let ((c (char-before))) |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
241 (or (= ?. c) (= 91 c)))) |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
242 (delete-char -1)) |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
243 (when (= ?. (char-before)) (delete-char -1)) |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
244 (setq specs nil))) |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
245 (setq specs (cdr specs))))) |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
246 (insert "]")) |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
247 |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
248 (defun vms-magic-colon () |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
249 "\ |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
250 Insert a colon, but do other things first depending on context. |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
251 During filename completion, when point is at the end of the line |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
252 and the line contains a right square brace, remove all characters |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
253 from the beginning of the line up to and including such brace. |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
254 This enables one to type a new filespec without having to delete |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
255 the old one." |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
256 (interactive) |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
257 (when (and minibuffer-completing-file-name |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
258 (= (point) (point-max)) |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
259 (search-backward "]" (field-beginning) t)) |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
260 (delete-region (field-beginning) (1+ (point))) |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
261 (goto-char (point-max))) |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
262 (insert ":")) |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
263 |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
264 (let ((m minibuffer-local-completion-map)) |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
265 (define-key m "]" 'vms-magic-right-square-brace) |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
266 (define-key m "/" 'vms-magic-right-square-brace) |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
267 (define-key m ":" 'vms-magic-colon)) |
11dc1e2caaf0
(vms-magic-right-square-brace, vms-magic-colon): New funcs.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62402
diff
changeset
|
268 |
93975
1e3a407766b9
Fix up comment convention on the arch-tag lines.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
92529
diff
changeset
|
269 ;; arch-tag: c178494e-2c37-4d02-99b7-e47e615656cf |
657
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
156
diff
changeset
|
270 ;;; vms-patch.el ends here |