diff options
| author | Jim Blandy | 1992-07-16 21:47:30 +0000 |
|---|---|---|
| committer | Jim Blandy | 1992-07-16 21:47:30 +0000 |
| commit | de49a6d37ea9c3111763e38df15e50a7fb9fa5c5 (patch) | |
| tree | 6cc4cbf12281b2ecaa24b92ac67f875beeba82e3 | |
| parent | a26389d11d915254263ee1bdab3d205f0a1caa81 (diff) | |
| download | emacs-de49a6d37ea9c3111763e38df15e50a7fb9fa5c5.tar.gz emacs-de49a6d37ea9c3111763e38df15e50a7fb9fa5c5.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/emacs-lisp/disass.el | 4 | ||||
| -rw-r--r-- | lisp/frame.el | 2 | ||||
| -rw-r--r-- | lisp/gud.el | 8 | ||||
| -rw-r--r-- | lisp/x-menu.el | 4 | ||||
| -rw-r--r-- | src/fileio.c | 6 |
5 files changed, 10 insertions, 14 deletions
diff --git a/lisp/emacs-lisp/disass.el b/lisp/emacs-lisp/disass.el index 5b85791dea1..b06171b52ec 100644 --- a/lisp/emacs-lisp/disass.el +++ b/lisp/emacs-lisp/disass.el | |||
| @@ -9,7 +9,7 @@ | |||
| 9 | 9 | ||
| 10 | ;; 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 |
| 11 | ;; it under the terms of the GNU General Public License as published by | 11 | ;; it under the terms of the GNU General Public License as published by |
| 12 | ;; the Free Software Foundation; either version 1, or (at your option) | 12 | ;; the Free Software Foundation; either version 2, or (at your option) |
| 13 | ;; any later version. | 13 | ;; any later version. |
| 14 | 14 | ||
| 15 | ;; GNU Emacs is distributed in the hope that it will be useful, | 15 | ;; GNU Emacs is distributed in the hope that it will be useful, |
| @@ -25,7 +25,7 @@ | |||
| 25 | ;;; The variable byte-code-vector is defined by the new bytecomp.el. | 25 | ;;; The variable byte-code-vector is defined by the new bytecomp.el. |
| 26 | ;;; The function byte-decompile-lapcode is defined in byte-opt.el. | 26 | ;;; The function byte-decompile-lapcode is defined in byte-opt.el. |
| 27 | ;;; Since we don't use byte-decompile-lapcode, let's try not loading byte-opt. | 27 | ;;; Since we don't use byte-decompile-lapcode, let's try not loading byte-opt. |
| 28 | (require 'bytecomp) | 28 | (require 'byte-compile) |
| 29 | 29 | ||
| 30 | (defvar disassemble-column-1-indent 5 "*") | 30 | (defvar disassemble-column-1-indent 5 "*") |
| 31 | (defvar disassemble-column-2-indent 10 "*") | 31 | (defvar disassemble-column-2-indent 10 "*") |
diff --git a/lisp/frame.el b/lisp/frame.el index 9722f32c435..734357ffd5f 100644 --- a/lisp/frame.el +++ b/lisp/frame.el | |||
| @@ -9,7 +9,7 @@ | |||
| 9 | ;;; | 9 | ;;; |
| 10 | ;;; 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 |
| 11 | ;;; it under the terms of the GNU General Public License as published by | 11 | ;;; it under the terms of the GNU General Public License as published by |
| 12 | ;;; the Free Software Foundation; either version 1, or (at your option) | 12 | ;;; the Free Software Foundation; either version 2, or (at your option) |
| 13 | ;;; any later version. | 13 | ;;; any later version. |
| 14 | ;;; | 14 | ;;; |
| 15 | ;;; GNU Emacs is distributed in the hope that it will be useful, | 15 | ;;; GNU Emacs is distributed in the hope that it will be useful, |
diff --git a/lisp/gud.el b/lisp/gud.el index 172781e0fea..a1e100a57ac 100644 --- a/lisp/gud.el +++ b/lisp/gud.el | |||
| @@ -1,11 +1,12 @@ | |||
| 1 | ;; Grand Unified Debugger mode --- run gdb, sdb, dbx under Emacs control | 1 | ;; Grand Unified Debugger mode --- run gdb, sdb, dbx under Emacs control |
| 2 | ;; Copyright (c) 1992 Free Software Foundation, Inc. | ||
| 2 | ;; @(#)gud.el 1.10 | 3 | ;; @(#)gud.el 1.10 |
| 3 | 4 | ||
| 4 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 5 | 6 | ||
| 6 | ;; GNU Emacs is free software; you can redistribute it and/or modify | 7 | ;; GNU Emacs is free software; you can redistribute it and/or modify |
| 7 | ;; it under the terms of the GNU General Public License as published by | 8 | ;; it under the terms of the GNU General Public License as published by |
| 8 | ;; the Free Software Foundation; either version 1, or (at your option) | 9 | ;; the Free Software Foundation; either version 2, or (at your option) |
| 9 | ;; any later version. | 10 | ;; any later version. |
| 10 | 11 | ||
| 11 | ;; GNU Emacs is distributed in the hope that it will be useful, | 12 | ;; GNU Emacs is distributed in the hope that it will be useful, |
| @@ -23,11 +24,6 @@ | |||
| 23 | ;; The overloading code was then rewritten by Barry Warsaw <bwarsaw@cen.com>, | 24 | ;; The overloading code was then rewritten by Barry Warsaw <bwarsaw@cen.com>, |
| 24 | ;; who also hacked the mode to use comint.el. | 25 | ;; who also hacked the mode to use comint.el. |
| 25 | 26 | ||
| 26 | ;; Note: use of this package with sdb requires that your tags.el support | ||
| 27 | ;; the find-tag-noselect entry point. Stock distributions up to 18.57 do | ||
| 28 | ;; *not* include this feature; if it's not included with this file, email | ||
| 29 | ;; eric@snark.thyrsus.com for it or get 18.58. | ||
| 30 | |||
| 31 | (require 'comint) | 27 | (require 'comint) |
| 32 | (require 'tags) | 28 | (require 'tags) |
| 33 | 29 | ||
diff --git a/lisp/x-menu.el b/lisp/x-menu.el index a1d3fa78859..8d55d875508 100644 --- a/lisp/x-menu.el +++ b/lisp/x-menu.el | |||
| @@ -9,7 +9,7 @@ | |||
| 9 | 9 | ||
| 10 | ;; 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 |
| 11 | ;; it under the terms of the GNU General Public License as published by | 11 | ;; it under the terms of the GNU General Public License as published by |
| 12 | ;; the Free Software Foundation; either version 1, or (at your option) | 12 | ;; the Free Software Foundation; either version 2, or (at your option) |
| 13 | ;; any later version. | 13 | ;; any later version. |
| 14 | 14 | ||
| 15 | ;; GNU Emacs is distributed in the hope that it will be useful, | 15 | ;; GNU Emacs is distributed in the hope that it will be useful, |
| @@ -107,7 +107,7 @@ This also creates the menu itself." | |||
| 107 | (let ((buf (current-buffer))) | 107 | (let ((buf (current-buffer))) |
| 108 | (pop-to-buffer menu) | 108 | (pop-to-buffer menu) |
| 109 | (let (buffer-read-only) | 109 | (let (buffer-read-only) |
| 110 | (setq x-menu-max-width (1- (screen-width))) | 110 | (setq x-menu-max-width (1- (frame-width))) |
| 111 | (setq x-menu-item-width 0) | 111 | (setq x-menu-item-width 0) |
| 112 | (let (items-head | 112 | (let (items-head |
| 113 | (items-tail x-menu-items-alist)) | 113 | (items-tail x-menu-items-alist)) |
diff --git a/src/fileio.c b/src/fileio.c index 945b986f7fb..4ff7dfeee87 100644 --- a/src/fileio.c +++ b/src/fileio.c | |||
| @@ -2470,11 +2470,11 @@ auto_save_error () | |||
| 2470 | 2470 | ||
| 2471 | ring_bell (); | 2471 | ring_bell (); |
| 2472 | message ("Autosaving...error for %s", name); | 2472 | message ("Autosaving...error for %s", name); |
| 2473 | Fsleep_for (make_number (1)); | 2473 | Fsleep_for (make_number (1), Qnil); |
| 2474 | message ("Autosaving...error!for %s", name); | 2474 | message ("Autosaving...error!for %s", name); |
| 2475 | Fsleep_for (make_number (1)); | 2475 | Fsleep_for (make_number (1), Qnil); |
| 2476 | message ("Autosaving...error for %s", name); | 2476 | message ("Autosaving...error for %s", name); |
| 2477 | Fsleep_for (make_number (1)); | 2477 | Fsleep_for (make_number (1), Qnil); |
| 2478 | return Qnil; | 2478 | return Qnil; |
| 2479 | } | 2479 | } |
| 2480 | 2480 | ||