Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
de49a6d3
Commit
de49a6d3
authored
Jul 16, 1992
by
Jim Blandy
Browse files
*** empty log message ***
parent
a26389d1
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
10 additions
and
14 deletions
+10
-14
lisp/emacs-lisp/disass.el
lisp/emacs-lisp/disass.el
+2
-2
lisp/frame.el
lisp/frame.el
+1
-1
lisp/gud.el
lisp/gud.el
+2
-6
lisp/x-menu.el
lisp/x-menu.el
+2
-2
src/fileio.c
src/fileio.c
+3
-3
No files found.
lisp/emacs-lisp/disass.el
View file @
de49a6d3
...
...
@@ -9,7 +9,7 @@
;; GNU Emacs is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version
1
, or (at your option)
;; the Free Software Foundation; either version
2
, or (at your option)
;; any later version.
;; GNU Emacs is distributed in the hope that it will be useful,
...
...
@@ -25,7 +25,7 @@
;;; The variable byte-code-vector is defined by the new bytecomp.el.
;;; The function byte-decompile-lapcode is defined in byte-opt.el.
;;; Since we don't use byte-decompile-lapcode, let's try not loading byte-opt.
(
require
'bytecomp
)
(
require
'byte
-
comp
ile
)
(
defvar
disassemble-column-1-indent
5
"*"
)
(
defvar
disassemble-column-2-indent
10
"*"
)
...
...
lisp/frame.el
View file @
de49a6d3
...
...
@@ -9,7 +9,7 @@
;;;
;;; GNU Emacs is free software; you can redistribute it and/or modify
;;; it under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version
1
, or (at your option)
;;; the Free Software Foundation; either version
2
, or (at your option)
;;; any later version.
;;;
;;; GNU Emacs is distributed in the hope that it will be useful,
...
...
lisp/gud.el
View file @
de49a6d3
;; Grand Unified Debugger mode --- run gdb, sdb, dbx under Emacs control
;; Copyright (c) 1992 Free Software Foundation, Inc.
;; @(#)gud.el 1.10
;; This file is part of GNU Emacs.
;; GNU Emacs is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version
1
, or (at your option)
;; the Free Software Foundation; either version
2
, or (at your option)
;; any later version.
;; GNU Emacs is distributed in the hope that it will be useful,
...
...
@@ -23,11 +24,6 @@
;; The overloading code was then rewritten by Barry Warsaw <bwarsaw@cen.com>,
;; who also hacked the mode to use comint.el.
;; Note: use of this package with sdb requires that your tags.el support
;; the find-tag-noselect entry point. Stock distributions up to 18.57 do
;; *not* include this feature; if it's not included with this file, email
;; eric@snark.thyrsus.com for it or get 18.58.
(
require
'comint
)
(
require
'tags
)
...
...
lisp/x-menu.el
View file @
de49a6d3
...
...
@@ -9,7 +9,7 @@
;; GNU Emacs is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version
1
, or (at your option)
;; the Free Software Foundation; either version
2
, or (at your option)
;; any later version.
;; GNU Emacs is distributed in the hope that it will be useful,
...
...
@@ -107,7 +107,7 @@ This also creates the menu itself."
(
let
((
buf
(
current-buffer
)))
(
pop-to-buffer
menu
)
(
let
(
buffer-read-only
)
(
setq
x-menu-max-width
(
1-
(
screen
-width
)))
(
setq
x-menu-max-width
(
1-
(
frame
-width
)))
(
setq
x-menu-item-width
0
)
(
let
(
items-head
(
items-tail
x-menu-items-alist
))
...
...
src/fileio.c
View file @
de49a6d3
...
...
@@ -2470,11 +2470,11 @@ auto_save_error ()
ring_bell
();
message
(
"Autosaving...error for %s"
,
name
);
Fsleep_for
(
make_number
(
1
));
Fsleep_for
(
make_number
(
1
)
,
Qnil
);
message
(
"Autosaving...error!for %s"
,
name
);
Fsleep_for
(
make_number
(
1
));
Fsleep_for
(
make_number
(
1
)
,
Qnil
);
message
(
"Autosaving...error for %s"
,
name
);
Fsleep_for
(
make_number
(
1
));
Fsleep_for
(
make_number
(
1
)
,
Qnil
);
return
Qnil
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment