Replace `string-to-int' by `string-to-number'.
[bpt/emacs.git] / lisp / vms-patch.el
CommitLineData
55535639 1;;; vms-patch.el --- override parts of files.el for VMS
d501f516 2
55badf85 3;; Copyright (C) 1986, 1992 Free Software Foundation, Inc.
eea8d4ef 4
e5167999 5;; Maintainer: FSF
6251ee24 6;; Keywords: vms
e5167999 7
a2535589
JA
8;; This file is part of GNU Emacs.
9
10;; GNU Emacs is free software; you can redistribute it and/or modify
11;; it under the terms of the GNU General Public License as published by
e5167999 12;; the Free Software Foundation; either version 2, or (at your option)
a2535589
JA
13;; any later version.
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
b578f267
EN
21;; along with GNU Emacs; see the file COPYING. If not, write to the
22;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23;; Boston, MA 02111-1307, USA.
a2535589 24
55535639
PJ
25;;; Commentary:
26
e5167999 27;;; Code:
a2535589 28
a98daaef
RS
29(setq auto-mode-alist (cons '(("\\.com\\'" . dcl-mode)) auto-mode-alist))
30
a2535589
JA
31;;; Functions that need redefinition
32
33;;; VMS file names are upper case, but buffer names are more
34;;; convenient in lower case.
35
36(defun create-file-buffer (filename)
37 "Create a suitably named buffer for visiting FILENAME, and return it.
38FILENAME (sans directory) is used unchanged if that name is free;
39otherwise a string <2> or <3> or ... is appended to get an unused name."
40 (generate-new-buffer (downcase (file-name-nondirectory filename))))
41
42;;; Given a string FN, return a similar name which is a legal VMS filename.
43;;; This is used to avoid invalid auto save file names.
44(defun make-legal-file-name (fn)
45 (setq fn (copy-sequence fn))
46 (let ((dot nil) (indx 0) (len (length fn)) chr)
47 (while (< indx len)
48 (setq chr (aref fn indx))
49 (cond
50 ((eq chr ?.) (if dot (aset fn indx ?_) (setq dot t)))
51 ((not (or (and (>= chr ?a) (<= chr ?z)) (and (>= chr ?A) (<= chr ?Z))
52 (and (>= chr ?0) (<= chr ?9))
53 (eq chr ?$) (eq chr ?_) (and (eq chr ?-) (> indx 0))))
54 (aset fn indx ?_)))
55 (setq indx (1+ indx))))
56 fn)
57
58;;; Auto save filesnames start with _$ and end with $.
59
60(defun make-auto-save-file-name ()
61 "Return file name to use for auto-saves of current buffer.
66657f27
RS
62This function does not consider `auto-save-visited-file-name';
63the caller should check that before calling this function.
64This is a separate function so that your `.emacs' file or the site's
65`site-init.el' can redefine it.
66See also `auto-save-file-name-p'."
a2535589
JA
67 (if buffer-file-name
68 (concat (file-name-directory buffer-file-name)
69 "_$"
70 (file-name-nondirectory buffer-file-name)
71 "$")
72 (expand-file-name (concat "_$_" (make-legal-file-name (buffer-name)) "$"))))
73
74(defun auto-save-file-name-p (filename)
66657f27 75 "Return t if FILENAME can be yielded by `make-auto-save-file-name'.
a2535589 76FILENAME should lack slashes.
66657f27
RS
77This is a separate function so that your `.emacs' file or the site's
78`site-init.el' can redefine it."
a2535589
JA
79 (string-match "^_\\$.*\\$" filename))
80
55badf85
RS
81;;;
82;;; This goes along with kepteditor.com which defines these logicals
83;;; If EMACS_COMMAND_ARGS is defined, it supersedes EMACS_FILE_NAME,
84;;; which is probably set up incorrectly anyway.
85;;; The function command-line-again is a kludge, but it does the job.
86;;;
a2535589
JA
87(defun vms-suspend-resume-hook ()
88 "When resuming suspended Emacs, check for file to be found.
89If the logical name `EMACS_FILE_NAME' is defined, `find-file' that file."
55badf85
RS
90 (let ((file (vms-system-info "LOGICAL" "EMACS_FILE_NAME"))
91 (args (vms-system-info "LOGICAL" "EMACS_COMMAND_ARGS"))
92 (line (vms-system-info "LOGICAL" "EMACS_FILE_LINE")))
93 (if (not args)
94 (if file
95 (progn (find-file file)
027a4b6b 96 (if line (goto-line (string-to-number line)))))
55badf85
RS
97 (cd (file-name-directory file))
98 (vms-command-line-again))))
a2535589
JA
99
100(setq suspend-resume-hook 'vms-suspend-resume-hook)
101
102(defun vms-suspend-hook ()
103 "Don't allow suspending if logical name `DONT_SUSPEND_EMACS' is defined."
104 (if (vms-system-info "LOGICAL" "DONT_SUSPEND_EMACS")
105 (error "Can't suspend this emacs"))
106 nil)
107
108(setq suspend-hook 'vms-suspend-hook)
109
55badf85
RS
110;;;
111;;; A kludge that allows reprocessing of the command line. This is mostly
112;;; to allow a spawned VMS mail process to do something reasonable when
113;;; used in conjunction with the modifications to sysdep.c that allow
114;;; Emacs to attach to a "foster" parent.
115;;;
116(defun vms-command-line-again ()
117 "Reprocess command line arguments. VMS specific.
118Command line arguments are initialized from the logical EMACS_COMMAND_ARGS
119which is defined by kepteditor.com. On VMS this allows attaching to a
120spawned Emacs and doing things like \"emacs -l myfile.el -f doit\""
121 (let* ((args (downcase (vms-system-info "LOGICAL" "EMACS_COMMAND_ARGS")))
122 (command-line-args (list "emacs"))
123 (beg 0)
124 (end 0)
125 (len (length args))
126 this-char)
127 (if args
128 (progn
129;;; replace non-printable stuff with spaces
130 (while (< beg (length args))
131 (if (or (> 33 (setq this-char (aref args beg)))
132 (< 127 this-char))
133 (aset args beg 32))
134 (setq beg (1+ beg)))
135 (setq beg (1- (length args)))
136 (while (= 32 (aref args beg)) (setq beg (1- beg)))
137 (setq args (substring args 0 (1+ beg)))
138 (setq beg 0)
139;;; now start parsing args
140 (while (< beg (length args))
141 (while (and (< beg (length args))
142 (or (> 33 (setq this-char (aref args beg)))
143 (< 127 this-char))
144 (setq beg (1+ beg))))
145 (setq end (1+ beg))
146 (while (and (< end (length args))
147 (< 32 (setq this-char (aref args end)))
148 (> 127 this-char))
149 (setq end (1+ end)))
f1180544 150 (setq command-line-args (append
55badf85
RS
151 command-line-args
152 (list (substring args beg end))))
153 (setq beg (1+ end)))
154 (command-line)))))
155
a2535589
JA
156(defun vms-read-directory (dirname switches buffer)
157 (save-excursion
158 (set-buffer buffer)
159 (subprocess-command-to-buffer
160 (concat "DIRECTORY " switches " " dirname)
161 buffer)
162 (goto-char (point-min))
163 ;; Remove all the trailing blanks.
164 (while (search-forward " \n")
165 (forward-char -1)
166 (delete-horizontal-space))
167 (goto-char (point-min))))
168
169(setq dired-listing-switches
170 "/SIZE/DATE/OWNER/WIDTH=(FILENAME=32,SIZE=5)")
86581d96
JB
171
172(setq print-region-function
a44442ba 173 (lambda (start end command ign1 ign2 ign3 &rest switches)
86581d96
JB
174 (write-region start end "sys$login:delete-me.txt")
175 (send-command-to-subprocess
176 1
177 (concat command
6f680efb 178 " sys$login:delete-me.txt/name=\"GNUprintbuffer\" "
86581d96
JB
179 (mapconcat 'identity switches " "))
180 nil nil nil)))
d501f516 181
55badf85
RS
182;;;
183;;; Fuctions for using Emacs as a VMS Mail editor
184;;;
185(autoload 'vms-pmail-setup "vms-pmail"
186 "Set up file assuming use by VMS Mail utility.
187The buffer is put into text-mode, auto-save is turned off and the
188following bindings are established.
189
190\\[vms-pmail-save-and-exit] vms-pmail-save-and-exit
191\\[vms-pmail-abort] vms-pmail-abort
192
193All other Emacs commands are still available."
194 t)
195
ab5796a9 196;;; arch-tag: c178494e-2c37-4d02-99b7-e47e615656cf
d501f516 197;;; vms-patch.el ends here