diff options
| author | Eric S. Raymond | 1992-07-22 03:58:44 +0000 |
|---|---|---|
| committer | Eric S. Raymond | 1992-07-22 03:58:44 +0000 |
| commit | 6d74b528d014d3ae65306e8afe154ccc66386be5 (patch) | |
| tree | 3b8a7eb6225bfffbd7a0142cc05abe6ae0ba45d1 | |
| parent | 32f4334dcef11f3b06b04e05618a27f477e96449 (diff) | |
| download | emacs-6d74b528d014d3ae65306e8afe154ccc66386be5.tar.gz emacs-6d74b528d014d3ae65306e8afe154ccc66386be5.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/files.el | 5 | ||||
| -rw-r--r-- | lisp/flow-ctrl.el | 5 | ||||
| -rw-r--r-- | lisp/server.el | 5 | ||||
| -rw-r--r-- | lisp/shell.el | 5 | ||||
| -rw-r--r-- | lisp/textmodes/sgml-mode.el | 5 |
5 files changed, 11 insertions, 14 deletions
diff --git a/lisp/files.el b/lisp/files.el index 8a7bea3b195..65697ba2a6d 100644 --- a/lisp/files.el +++ b/lisp/files.el | |||
| @@ -107,8 +107,8 @@ never means do not make them.") | |||
| 107 | "*When cleaning directory, number of versions to keep.") | 107 | "*When cleaning directory, number of versions to keep.") |
| 108 | 108 | ||
| 109 | (defvar trim-versions-without-asking nil | 109 | (defvar trim-versions-without-asking nil |
| 110 | "*If true, deletes excess backup versions silently. | 110 | "*If t, deletes excess backup versions silently. |
| 111 | Otherwise asks confirmation.") | 111 | If nil, asks confirmation. Any other value prevents any trimming.") |
| 112 | 112 | ||
| 113 | (defvar kept-old-versions 2 | 113 | (defvar kept-old-versions 2 |
| 114 | "*Number of oldest versions to keep when a new numbered backup is made.") | 114 | "*Number of oldest versions to keep when a new numbered backup is made.") |
| @@ -767,6 +767,7 @@ the modes of the new file to agree with the old modes." | |||
| 767 | ;; ask the user to confirm now, before doing anything. | 767 | ;; ask the user to confirm now, before doing anything. |
| 768 | ;; But don't actually delete til later. | 768 | ;; But don't actually delete til later. |
| 769 | (and targets | 769 | (and targets |
| 770 | (or (eq trim-versions-without-asking t) (eq trim-versions-without-asking nil)) | ||
| 770 | (or trim-versions-without-asking | 771 | (or trim-versions-without-asking |
| 771 | (y-or-n-p (format "Delete excess backup versions of %s? " | 772 | (y-or-n-p (format "Delete excess backup versions of %s? " |
| 772 | real-file-name)))))) | 773 | real-file-name)))))) |
diff --git a/lisp/flow-ctrl.el b/lisp/flow-ctrl.el index 0cc2d0fa08e..2f98e999d9b 100644 --- a/lisp/flow-ctrl.el +++ b/lisp/flow-ctrl.el | |||
| @@ -1,13 +1,12 @@ | |||
| 1 | ;;; flow-ctrl.el --- help for lusers on cu(1) or ttys with wired-in ^S/^Q flow control | 1 | ;;; flow-ctrl.el --- help for lusers on cu(1) or ttys with wired-in ^S/^Q flow control |
| 2 | 2 | ||
| 3 | ;;; Copyright (C) 1990 Free Software Foundation, Inc. | ||
| 4 | ;;; Copyright (C) 1991 Kevin Gallagher | ||
| 3 | ;; Author Kevin Gallagher | 5 | ;; Author Kevin Gallagher |
| 4 | ;; Maintainer: FSF | 6 | ;; Maintainer: FSF |
| 5 | ;; Last-Modified: 03 Jun 1992 | ||
| 6 | ;; Adapted-By: ESR | 7 | ;; Adapted-By: ESR |
| 7 | ;; Keywords: hardware | 8 | ;; Keywords: hardware |
| 8 | 9 | ||
| 9 | ;;; Copyright (C) 1990 Free Software Foundation, Inc. | ||
| 10 | ;;; Copyright (C) 1991 Kevin Gallagher | ||
| 11 | ;;; | 10 | ;;; |
| 12 | ;;; GNU Emacs is distributed in the hope that it will be useful, but | 11 | ;;; GNU Emacs is distributed in the hope that it will be useful, but |
| 13 | ;;; WITHOUT ANY WARRANTY. No author or distributor accepts | 12 | ;;; WITHOUT ANY WARRANTY. No author or distributor accepts |
diff --git a/lisp/server.el b/lisp/server.el index 59219967b8e..2ad6a84ba34 100644 --- a/lisp/server.el +++ b/lisp/server.el | |||
| @@ -1,13 +1,12 @@ | |||
| 1 | ;;; server.el --- Lisp code for GNU Emacs running as server process. | 1 | ;;; server.el --- Lisp code for GNU Emacs running as server process. |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 1986, 1987 Free Software Foundation, Inc. | ||
| 4 | |||
| 3 | ;; Author: William Sommerfeld <wesommer@athena.mit.edu> | 5 | ;; Author: William Sommerfeld <wesommer@athena.mit.edu> |
| 4 | ;; Last-Modified: 05 Dec 1991 | ||
| 5 | ;; Keywords: processes | 6 | ;; Keywords: processes |
| 6 | 7 | ||
| 7 | ;; Changes by peck@sun.com and by rms. | 8 | ;; Changes by peck@sun.com and by rms. |
| 8 | 9 | ||
| 9 | ;; Copyright (C) 1986, 1987 Free Software Foundation, Inc. | ||
| 10 | |||
| 11 | ;; This file is part of GNU Emacs. | 10 | ;; This file is part of GNU Emacs. |
| 12 | 11 | ||
| 13 | ;; GNU Emacs is free software; you can redistribute it and/or modify | 12 | ;; GNU Emacs is free software; you can redistribute it and/or modify |
diff --git a/lisp/shell.el b/lisp/shell.el index 0ae9e1b2a61..a8277da845d 100644 --- a/lisp/shell.el +++ b/lisp/shell.el | |||
| @@ -1,11 +1,10 @@ | |||
| 1 | ;;; shell.el --- general command interpreter in a window stuff | 1 | ;;; shell.el --- general command interpreter in a window stuff |
| 2 | 2 | ||
| 3 | ;;; Copyright Olin Shivers (1988). | ||
| 4 | |||
| 3 | ;; Author: Olin Shivers <shivers@cs.cmu.edu> | 5 | ;; Author: Olin Shivers <shivers@cs.cmu.edu> |
| 4 | ;; Last-Modified: 16 Mar 1992 | ||
| 5 | ;; Keywords: processes | 6 | ;; Keywords: processes |
| 6 | 7 | ||
| 7 | ;;; Copyright Olin Shivers (1988). | ||
| 8 | |||
| 9 | ;;; This file is part of GNU Emacs. | 8 | ;;; This file is part of GNU Emacs. |
| 10 | 9 | ||
| 11 | ;;; GNU Emacs is free software; you can redistribute it and/or modify | 10 | ;;; GNU Emacs is free software; you can redistribute it and/or modify |
diff --git a/lisp/textmodes/sgml-mode.el b/lisp/textmodes/sgml-mode.el index ed4ebad10e8..76c689de848 100644 --- a/lisp/textmodes/sgml-mode.el +++ b/lisp/textmodes/sgml-mode.el | |||
| @@ -1,13 +1,12 @@ | |||
| 1 | ;;; sgml-mode.el --- SGML-editing mode | 1 | ;;; sgml-mode.el --- SGML-editing mode |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 1992 Free Software Foundation, Inc. | ||
| 4 | |||
| 3 | ;; Author: James Clark | 5 | ;; Author: James Clark |
| 4 | ;; Maintainer: FSF | 6 | ;; Maintainer: FSF |
| 5 | ;; Last-Modified: 14 Jul 1992 | ||
| 6 | ;; Adapted-By: ESR | 7 | ;; Adapted-By: ESR |
| 7 | ;; Keywords: wp | 8 | ;; Keywords: wp |
| 8 | 9 | ||
| 9 | ;; Copyright (C) 1992 Free Software Foundation, Inc. | ||
| 10 | |||
| 11 | ;; This file is part of GNU Emacs. | 10 | ;; This file is part of GNU Emacs. |
| 12 | 11 | ||
| 13 | ;; GNU Emacs is free software; you can redistribute it and/or modify | 12 | ;; GNU Emacs is free software; you can redistribute it and/or modify |