diff options
| author | Eric S. Raymond | 1992-05-30 20:24:49 +0000 |
|---|---|---|
| committer | Eric S. Raymond | 1992-05-30 20:24:49 +0000 |
| commit | d501f51645d966e8fe2febba698779996b33eb21 (patch) | |
| tree | 6f8fb7b58342ab0125aecfd659e90e5b66c0ef28 | |
| parent | 76d7458ed90577d639dc71a5e100839d9a9ab13c (diff) | |
| download | emacs-d501f51645d966e8fe2febba698779996b33eb21.tar.gz emacs-d501f51645d966e8fe2febba698779996b33eb21.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/emacs-lisp/copyright.el | 4 | ||||
| -rw-r--r-- | lisp/emulation/vi.el | 5 | ||||
| -rw-r--r-- | lisp/mail/undigest.el | 4 | ||||
| -rw-r--r-- | lisp/play/studly.el | 4 | ||||
| -rw-r--r-- | lisp/term-nasty.el | 6 | ||||
| -rw-r--r-- | lisp/terminal.el | 5 | ||||
| -rw-r--r-- | lisp/textmodes/tex-mode.el | 4 | ||||
| -rw-r--r-- | lisp/textmodes/texinfmt.el | 5 | ||||
| -rw-r--r-- | lisp/textmodes/texinfo.el | 4 | ||||
| -rw-r--r-- | lisp/textmodes/texnfo-upd.el | 6 | ||||
| -rw-r--r-- | lisp/textmodes/text-mode.el | 5 | ||||
| -rw-r--r-- | lisp/textmodes/underline.el | 5 | ||||
| -rw-r--r-- | lisp/time.el | 5 | ||||
| -rw-r--r-- | lisp/timer.el | 5 | ||||
| -rw-r--r-- | lisp/uncompress.el | 22 | ||||
| -rw-r--r-- | lisp/unused.el | 7 | ||||
| -rw-r--r-- | lisp/userlock.el | 4 | ||||
| -rw-r--r-- | lisp/view.el | 4 | ||||
| -rw-r--r-- | lisp/vms-patch.el | 5 | ||||
| -rw-r--r-- | lisp/vmsproc.el | 4 |
20 files changed, 89 insertions, 24 deletions
diff --git a/lisp/emacs-lisp/copyright.el b/lisp/emacs-lisp/copyright.el index d7d20af1d7a..70f1a43fe54 100644 --- a/lisp/emacs-lisp/copyright.el +++ b/lisp/emacs-lisp/copyright.el | |||
| @@ -1,3 +1,5 @@ | |||
| 1 | ;;; upd-copyr.el --- update the copyright notice in a GNU Emacs elisp file | ||
| 2 | |||
| 1 | ;;; Copyright (C) 1991, 1992 Free Software Foundation, Inc. | 3 | ;;; Copyright (C) 1991, 1992 Free Software Foundation, Inc. |
| 2 | ;;; Written by Roland McGrath. | 4 | ;;; Written by Roland McGrath. |
| 3 | ;;; | 5 | ;;; |
| @@ -128,3 +130,5 @@ Put this on write-file-hooks." | |||
| 128 | nil) | 130 | nil) |
| 129 | 131 | ||
| 130 | (provide 'upd-copyr) | 132 | (provide 'upd-copyr) |
| 133 | |||
| 134 | ;;; upd-copyr.el ends here | ||
diff --git a/lisp/emulation/vi.el b/lisp/emulation/vi.el index 55259ed4221..fb76742c295 100644 --- a/lisp/emulation/vi.el +++ b/lisp/emulation/vi.el | |||
| @@ -1,4 +1,5 @@ | |||
| 1 | ; Evi: Major mode for emulating "vi" editor under GNU Emacs. | 1 | ;;; vi.el --- major mode for emulating "vi" editor under GNU Emacs. |
| 2 | |||
| 2 | ; Originally written by : seismo!wucs!nz@rsch.wisc.edu (Neal Ziring) | 3 | ; Originally written by : seismo!wucs!nz@rsch.wisc.edu (Neal Ziring) |
| 3 | ; Extensively redesigned and rewritten by wu@crys.wisc.edu (Felix S.T. Wu) | 4 | ; Extensively redesigned and rewritten by wu@crys.wisc.edu (Felix S.T. Wu) |
| 4 | ; Last revision: 01/07/87 Wed (for GNU Emacs 18.33) | 5 | ; Last revision: 01/07/87 Wed (for GNU Emacs 18.33) |
| @@ -1445,3 +1446,5 @@ With arg, inserts that many newlines." | |||
| 1445 | (setq arg (1- arg))) | 1446 | (setq arg (1- arg))) |
| 1446 | (if flag (forward-char 1))))) arg) | 1447 | (if flag (forward-char 1))))) arg) |
| 1447 | t)) | 1448 | t)) |
| 1449 | |||
| 1450 | ;;; vi.el ends here | ||
diff --git a/lisp/mail/undigest.el b/lisp/mail/undigest.el index 583251e990f..5b80fbf8e2e 100644 --- a/lisp/mail/undigest.el +++ b/lisp/mail/undigest.el | |||
| @@ -1,4 +1,5 @@ | |||
| 1 | ;; "RMAIL" mail reader for Emacs. | 1 | ;;; undigest.el --- digest-cracking support for the RMAIL mail reader |
| 2 | |||
| 2 | ;; Copyright (C) 1985, 1986 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 1985, 1986 Free Software Foundation, Inc. |
| 3 | 4 | ||
| 4 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| @@ -103,3 +104,4 @@ Leaves original message, deleted, before the undigestified messages." | |||
| 103 | (delete-region (point-min) (point-max)) | 104 | (delete-region (point-min) (point-max)) |
| 104 | (rmail-show-message rmail-current-message)))))) | 105 | (rmail-show-message rmail-current-message)))))) |
| 105 | 106 | ||
| 107 | ;;; undigest.el ends here | ||
diff --git a/lisp/play/studly.el b/lisp/play/studly.el index 5661b04a3cb..e40b18677f7 100644 --- a/lisp/play/studly.el +++ b/lisp/play/studly.el | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | ;;; StudlyCaps (tm)(r)(c)(xxx) | 1 | ;;; studly.el --- StudlyCaps (tm)(r)(c)(xxx) |
| 2 | 2 | ||
| 3 | (defun studlify-region (begin end) | 3 | (defun studlify-region (begin end) |
| 4 | "Studlify-case the region" | 4 | "Studlify-case the region" |
| @@ -46,3 +46,5 @@ | |||
| 46 | "Studlify-case the current buffer" | 46 | "Studlify-case the current buffer" |
| 47 | (interactive "*") | 47 | (interactive "*") |
| 48 | (studlify-region (point-min) (point-max))) | 48 | (studlify-region (point-min) (point-max))) |
| 49 | |||
| 50 | ;;; studly.el ends here | ||
diff --git a/lisp/term-nasty.el b/lisp/term-nasty.el index 86a4a1ec30e..2a0d13acd6b 100644 --- a/lisp/term-nasty.el +++ b/lisp/term-nasty.el | |||
| @@ -1,3 +1,5 @@ | |||
| 1 | ;;; term-nasty.el --- Damned Things from terminfo.el | ||
| 2 | |||
| 1 | Some people used to be bothered by the following comments that were | 3 | Some people used to be bothered by the following comments that were |
| 2 | found in terminal.el. We decided they were distracting, and that it | 4 | found in terminal.el. We decided they were distracting, and that it |
| 3 | was better not to have them there. On the other hand, we didn't want | 5 | was better not to have them there. On the other hand, we didn't want |
| @@ -18,4 +20,6 @@ and C-i even though the termcap doesn't say they may be used: | |||
| 18 | ;fuck me harder | 20 | ;fuck me harder |
| 19 | ;again and again! | 21 | ;again and again! |
| 20 | ;wa12id!! | 22 | ;wa12id!! |
| 21 | ;(spiked) \ No newline at end of file | 23 | ;(spiked) |
| 24 | |||
| 25 | ;;; term-nasty.el ends here | ||
diff --git a/lisp/terminal.el b/lisp/terminal.el index 314cc45d707..97293fee260 100644 --- a/lisp/terminal.el +++ b/lisp/terminal.el | |||
| @@ -1,4 +1,5 @@ | |||
| 1 | ;; Terminal emulator for GNU Emacs. | 1 | ;;; terminal.el --- terminal emulator for GNU Emacs. |
| 2 | |||
| 2 | ;; Copyright (C) 1986, 1987, 1988, 1989 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 1986, 1987, 1988, 1989 Free Software Foundation, Inc. |
| 3 | ;; Written by Richard Mlynarik, November 1986. | 4 | ;; Written by Richard Mlynarik, November 1986. |
| 4 | 5 | ||
| @@ -1217,3 +1218,5 @@ of the terminal-emulator" | |||
| 1217 | (concat "\"" harder "\""))))) | 1218 | (concat "\"" harder "\""))))) |
| 1218 | 1219 | ||
| 1219 | (provide 'terminal) | 1220 | (provide 'terminal) |
| 1221 | |||
| 1222 | ;;; terminal.el ends here | ||
diff --git a/lisp/textmodes/tex-mode.el b/lisp/textmodes/tex-mode.el index eb5ff51e932..bc92872d951 100644 --- a/lisp/textmodes/tex-mode.el +++ b/lisp/textmodes/tex-mode.el | |||
| @@ -1,4 +1,5 @@ | |||
| 1 | ;; TeX, LaTeX, and SliTeX mode commands. | 1 | ;;; tex-mode.el --- TeX, LaTeX, and SliTeX mode commands. |
| 2 | |||
| 2 | ;; Copyright (C) 1985, 1986, 1989 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 1985, 1986, 1989 Free Software Foundation, Inc. |
| 3 | ;; Rewritten following contributions by William F. Schelter | 4 | ;; Rewritten following contributions by William F. Schelter |
| 4 | ;; and Dick King (king@kestrel). | 5 | ;; and Dick King (king@kestrel). |
| @@ -803,3 +804,4 @@ Runs the shell command defined by tex-show-queue-command." | |||
| 803 | 804 | ||
| 804 | (provide 'tex-mode) | 805 | (provide 'tex-mode) |
| 805 | 806 | ||
| 807 | ;;; tex-mode.el ends here | ||
diff --git a/lisp/textmodes/texinfmt.el b/lisp/textmodes/texinfmt.el index 7d38045eb8c..f23ffbba7aa 100644 --- a/lisp/textmodes/texinfmt.el +++ b/lisp/textmodes/texinfmt.el | |||
| @@ -1,5 +1,4 @@ | |||
| 1 | ;;;; texinfmt.el | 1 | ;;;; texinfmt.el --- convert Texinfo files to Info files. |
| 2 | ;;;; Convert Texinfo files to Info files. | ||
| 3 | 2 | ||
| 4 | ;;;; Version 2.00 14 Dec 1990 | 3 | ;;;; Version 2.00 14 Dec 1990 |
| 5 | 4 | ||
| @@ -1819,3 +1818,5 @@ For example, invoke | |||
| 1819 | (message ">> %s" s)) | 1818 | (message ">> %s" s)) |
| 1820 | (setq error 1)))) | 1819 | (setq error 1)))) |
| 1821 | (kill-emacs error)))) | 1820 | (kill-emacs error)))) |
| 1821 | |||
| 1822 | ;;; texinfmt.el ends here | ||
diff --git a/lisp/textmodes/texinfo.el b/lisp/textmodes/texinfo.el index edb72a8ed54..76cbc5b2a2b 100644 --- a/lisp/textmodes/texinfo.el +++ b/lisp/textmodes/texinfo.el | |||
| @@ -1,5 +1,4 @@ | |||
| 1 | ;;;; texinfo.el | 1 | ;;;; texinfo.el ---- major mode for editing Texinfo files. |
| 2 | ;;;; Major mode for editing Texinfo files. | ||
| 3 | 2 | ||
| 4 | ;;;; Version 2.00 14 Dec 1990 | 3 | ;;;; Version 2.00 14 Dec 1990 |
| 5 | 4 | ||
| @@ -413,3 +412,4 @@ Runs the shell command defined by tex-dvi-print-command." | |||
| 413 | 412 | ||
| 414 | (provide 'texinfo) | 413 | (provide 'texinfo) |
| 415 | 414 | ||
| 415 | ;;; texinfo.el ends here | ||
diff --git a/lisp/textmodes/texnfo-upd.el b/lisp/textmodes/texnfo-upd.el index 6954952ca61..377de8a6ab9 100644 --- a/lisp/textmodes/texnfo-upd.el +++ b/lisp/textmodes/texnfo-upd.el | |||
| @@ -1,5 +1,4 @@ | |||
| 1 | ;;;; texnfo-upd.el | 1 | ;;; texnfo-upd.el --- a utility for updating nodes and menus in Texinfo files. |
| 2 | ;;;; A utility for updating nodes and menus in Texinfo files. | ||
| 3 | 2 | ||
| 4 | ;;;; Version 2.00 14 Dec 1990 | 3 | ;;;; Version 2.00 14 Dec 1990 |
| 5 | 4 | ||
| @@ -1721,7 +1720,6 @@ chapter." | |||
| 1721 | included-file-list))))) | 1720 | included-file-list))))) |
| 1722 | (message "Multiple files updated.")) | 1721 | (message "Multiple files updated.")) |
| 1723 | 1722 | ||
| 1724 | ;;;;;;;;;;;;;;;; end texnfo-upd.el ;;;;;;;;;;;;;;;; | ||
| 1725 | |||
| 1726 | (provide 'texnfo-upd) | 1723 | (provide 'texnfo-upd) |
| 1727 | 1724 | ||
| 1725 | ;;; texnfo-upd.el ends here | ||
diff --git a/lisp/textmodes/text-mode.el b/lisp/textmodes/text-mode.el index 39122d5e436..56a4ab59c59 100644 --- a/lisp/textmodes/text-mode.el +++ b/lisp/textmodes/text-mode.el | |||
| @@ -1,4 +1,5 @@ | |||
| 1 | ;; Text mode, and its ideosyncratic commands. | 1 | ;;; text-mode.el --- text mode, and its idiosyncratic commands. |
| 2 | |||
| 2 | ;; Copyright (C) 1985 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 1985 Free Software Foundation, Inc. |
| 3 | 4 | ||
| 4 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| @@ -148,3 +149,5 @@ the distance between the end of the text and `fill-column'." | |||
| 148 | (indent-to | 149 | (indent-to |
| 149 | (+ left-margin | 150 | (+ left-margin |
| 150 | (/ (- fill-column left-margin line-length) 2)))))) | 151 | (/ (- fill-column left-margin line-length) 2)))))) |
| 152 | |||
| 153 | ;;; text-mode.el ends here | ||
diff --git a/lisp/textmodes/underline.el b/lisp/textmodes/underline.el index 89edcfefe34..da341b2ab9c 100644 --- a/lisp/textmodes/underline.el +++ b/lisp/textmodes/underline.el | |||
| @@ -1,4 +1,5 @@ | |||
| 1 | ;; Insert or remove underlining (done by overstriking) in Emacs. | 1 | ;;; underline.el --- insert/remove underlining (done by overstriking) in Emacs. |
| 2 | |||
| 2 | ;; Copyright (C) 1985 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 1985 Free Software Foundation, Inc. |
| 3 | 4 | ||
| 4 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| @@ -46,3 +47,5 @@ which specify the range to operate on." | |||
| 46 | (goto-char (min start end)) | 47 | (goto-char (min start end)) |
| 47 | (while (re-search-forward "_\\|_" end1 t) | 48 | (while (re-search-forward "_\\|_" end1 t) |
| 48 | (delete-char -2))))) | 49 | (delete-char -2))))) |
| 50 | |||
| 51 | ;;; underline.el ends here | ||
diff --git a/lisp/time.el b/lisp/time.el index 27485bee64a..2978b812cdb 100644 --- a/lisp/time.el +++ b/lisp/time.el | |||
| @@ -1,4 +1,5 @@ | |||
| 1 | ;; Display time and load in mode line of Emacs. | 1 | ;;; time.el --- display time and load in mode line of Emacs. |
| 2 | |||
| 2 | ;; Copyright (C) 1985, 1986, 1987 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 1985, 1986, 1987 Free Software Foundation, Inc. |
| 3 | 4 | ||
| 4 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| @@ -122,3 +123,5 @@ After each update, `display-time-hook' is run with `run-hooks'." | |||
| 122 | (while (file-symlink-p file) | 123 | (while (file-symlink-p file) |
| 123 | (setq file (file-symlink-p file))) | 124 | (setq file (file-symlink-p file))) |
| 124 | (> (nth 7 (file-attributes file)) 0)) | 125 | (> (nth 7 (file-attributes file)) 0)) |
| 126 | |||
| 127 | ;;; time.el ends here | ||
diff --git a/lisp/timer.el b/lisp/timer.el index 905706f3ab7..b938307aea6 100644 --- a/lisp/timer.el +++ b/lisp/timer.el | |||
| @@ -1,4 +1,5 @@ | |||
| 1 | ;; Run a function with args at some time in future | 1 | ;;; timer.el --- run a function with args at some time in future |
| 2 | |||
| 2 | ;; Copyright (C) 1990 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 1990 Free Software Foundation, Inc. |
| 3 | 4 | ||
| 4 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| @@ -91,3 +92,5 @@ the call to the function." | |||
| 91 | (or timer-alist timer-dont-exit (process-send-eof timer-process))) | 92 | (or timer-alist timer-dont-exit (process-send-eof timer-process))) |
| 92 | 93 | ||
| 93 | (provide 'timer) | 94 | (provide 'timer) |
| 95 | |||
| 96 | ;;; timer.el ends here | ||
diff --git a/lisp/uncompress.el b/lisp/uncompress.el index 6897c7c3ccb..fd450ac36f0 100644 --- a/lisp/uncompress.el +++ b/lisp/uncompress.el | |||
| @@ -1,3 +1,23 @@ | |||
| 1 | ;;; uncompress.el --- auto-decompression hook for visiting .Z files | ||
| 2 | |||
| 3 | ;; Copyright (C) 1992 Free Software Foundation, Inc. | ||
| 4 | |||
| 5 | ;; This file is part of GNU Emacs. | ||
| 6 | |||
| 7 | ;; GNU Emacs is free software; you can redistribute it and/or modify | ||
| 8 | ;; it under the terms of the GNU General Public License as published by | ||
| 9 | ;; the Free Software Foundation; either version 1, or (at your option) | ||
| 10 | ;; any later version. | ||
| 11 | |||
| 12 | ;; GNU Emacs is distributed in the hope that it will be useful, | ||
| 13 | ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 14 | ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 15 | ;; GNU General Public License for more details. | ||
| 16 | |||
| 17 | ;; You should have received a copy of the GNU General Public License | ||
| 18 | ;; along with GNU Emacs; see the file COPYING. If not, write to | ||
| 19 | ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | ||
| 20 | |||
| 1 | ;; When we are about to make a backup file, | 21 | ;; When we are about to make a backup file, |
| 2 | ;; uncompress the file we visited | 22 | ;; uncompress the file we visited |
| 3 | ;; so that making the backup can work properly. | 23 | ;; so that making the backup can work properly. |
| @@ -45,3 +65,5 @@ It then selects a major mode from the uncompressed file name and contents." | |||
| 45 | (goto-char (point-min)) | 65 | (goto-char (point-min)) |
| 46 | (setq error nil) | 66 | (setq error nil) |
| 47 | t))) | 67 | t))) |
| 68 | |||
| 69 | ;;; uncompress.el ends here | ||
diff --git a/lisp/unused.el b/lisp/unused.el index 0808593f6e6..9b7eea4304e 100644 --- a/lisp/unused.el +++ b/lisp/unused.el | |||
| @@ -1,5 +1,6 @@ | |||
| 1 | ;; Editing commands in GNU Emacs that turned out not to be used. | 1 | ;;; unused.el --- editing commands in GNU Emacs that turned out not to be used. |
| 2 | ;; They were added with an eye to making possible a more CCA-compatible | 2 | |
| 3 | ;; These were added with an eye to making possible a more CCA-compatible | ||
| 3 | ;; command set; but that turned out not to be interesting. | 4 | ;; command set; but that turned out not to be interesting. |
| 4 | 5 | ||
| 5 | (defun mark-beginning-of-buffer () | 6 | (defun mark-beginning-of-buffer () |
| @@ -30,3 +31,5 @@ With argument, do this that many times." | |||
| 30 | With argument, do this that many times." | 31 | With argument, do this that many times." |
| 31 | (interactive "p") | 32 | (interactive "p") |
| 32 | (forward-to-word (- arg))) | 33 | (forward-to-word (- arg))) |
| 34 | |||
| 35 | ;;; unused.el ends here | ||
diff --git a/lisp/userlock.el b/lisp/userlock.el index 5866b03c67b..23430fa1e04 100644 --- a/lisp/userlock.el +++ b/lisp/userlock.el | |||
| @@ -1,3 +1,5 @@ | |||
| 1 | ;;; userlock.el --- handle file access contention between multiple users | ||
| 2 | |||
| 1 | ;; Copyright (C) 1985, 1986 Free Software Foundation, inc. | 3 | ;; Copyright (C) 1985, 1986 Free Software Foundation, inc. |
| 2 | 4 | ||
| 3 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| @@ -123,4 +125,4 @@ If you say `n', the change you started to make will be aborted. | |||
| 123 | Usually, you should type `n' and then `M-x revert-buffer', | 125 | Usually, you should type `n' and then `M-x revert-buffer', |
| 124 | to get the latest version of the file, then make the change again."))) | 126 | to get the latest version of the file, then make the change again."))) |
| 125 | 127 | ||
| 126 | 128 | ;;; userlock.el ends here | |
diff --git a/lisp/view.el b/lisp/view.el index 3307ba8ce03..8bb69bff6fd 100644 --- a/lisp/view.el +++ b/lisp/view.el | |||
| @@ -1,4 +1,5 @@ | |||
| 1 | ;; View: Peruse file or buffer without editing. | 1 | ;;; view.el --- peruse file or buffer without editing. |
| 2 | |||
| 2 | ;; Copyright (C) 1985, 1989 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 1985, 1989 Free Software Foundation, Inc. |
| 3 | ;; Principal author K. Shane Hartman | 4 | ;; Principal author K. Shane Hartman |
| 4 | 5 | ||
| @@ -439,3 +440,4 @@ invocations return to earlier marks." | |||
| 439 | 440 | ||
| 440 | (provide 'view) | 441 | (provide 'view) |
| 441 | 442 | ||
| 443 | ;;; view.el ends here | ||
diff --git a/lisp/vms-patch.el b/lisp/vms-patch.el index 15302b3fd90..48ecbeb61de 100644 --- a/lisp/vms-patch.el +++ b/lisp/vms-patch.el | |||
| @@ -1,4 +1,5 @@ | |||
| 1 | ;; Override parts of files.el for VMS. | 1 | ;;; vms-patch.el --- override parts of files.el for VMS. |
| 2 | |||
| 2 | ;; Copyright (C) 1986 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 1986 Free Software Foundation, Inc. |
| 3 | 4 | ||
| 4 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| @@ -107,3 +108,5 @@ If the logical name `EMACS_FILE_NAME' is defined, `find-file' that file." | |||
| 107 | " sys$login:delete-me.txt/name=""GNUprintbuffer"" " | 108 | " sys$login:delete-me.txt/name=""GNUprintbuffer"" " |
| 108 | (mapconcat 'identity switches " ")) | 109 | (mapconcat 'identity switches " ")) |
| 109 | nil nil nil))) | 110 | nil nil nil))) |
| 111 | |||
| 112 | ;;; vms-patch.el ends here | ||
diff --git a/lisp/vmsproc.el b/lisp/vmsproc.el index 47c35ee4b14..efd1482e1c0 100644 --- a/lisp/vmsproc.el +++ b/lisp/vmsproc.el | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | ;; vmsx.el --- run asynchronous VMS subprocesses under Emacs | 1 | ;; vmsproc.el --- run asynchronous VMS subprocesses under Emacs |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 1986 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 1986 Free Software Foundation, Inc. |
| 4 | 4 | ||
| @@ -137,3 +137,5 @@ line to the last line for resubmission." | |||
| 137 | (kill-line)) | 137 | (kill-line)) |
| 138 | 138 | ||
| 139 | (define-key esc-map "$" 'subprocess-command) | 139 | (define-key esc-map "$" 'subprocess-command) |
| 140 | |||
| 141 | ;;; vmsproc.el ends here | ||