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
3a801d0c
Commit
3a801d0c
authored
Jul 22, 1992
by
Eric S. Raymond
Browse files
*** empty log message ***
parent
9750e079
Changes
69
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
62 additions
and
63 deletions
+62
-63
lisp/abbrev.el
lisp/abbrev.el
+2
-3
lisp/add-log.el
lisp/add-log.el
+0
-2
lisp/byte-run.el
lisp/byte-run.el
+2
-3
lisp/calendar/appt.el
lisp/calendar/appt.el
+2
-3
lisp/calendar/calendar.el
lisp/calendar/calendar.el
+2
-3
lisp/calendar/holidays.el
lisp/calendar/holidays.el
+2
-3
lisp/case-table.el
lisp/case-table.el
+3
-3
lisp/cl.el
lisp/cl.el
+2
-3
lisp/cmuscheme.el
lisp/cmuscheme.el
+0
-1
lisp/comint.el
lisp/comint.el
+2
-3
lisp/dabbrev.el
lisp/dabbrev.el
+4
-2
lisp/diary-lib.el
lisp/diary-lib.el
+2
-3
lisp/diff.el
lisp/diff.el
+2
-3
lisp/dired-aux.el
lisp/dired-aux.el
+2
-3
lisp/ebuff-menu.el
lisp/ebuff-menu.el
+2
-3
lisp/echistory.el
lisp/echistory.el
+2
-3
lisp/ehelp.el
lisp/ehelp.el
+2
-3
lisp/emacs-lisp/autoload.el
lisp/emacs-lisp/autoload.el
+2
-3
lisp/emacs-lisp/bytecomp.el
lisp/emacs-lisp/bytecomp.el
+13
-5
lisp/emacs-lisp/edebug.el
lisp/emacs-lisp/edebug.el
+14
-8
No files found.
lisp/abbrev.el
View file @
3a801d0c
;;; abbrev.el --- abbrev mode commands for Emacs
;; Maintainer: FSF
;; Last-Modified: 09 Jul 1992
;; Copyright (C) 1985, 1986, 1987, 1992 Free Software Foundation, Inc.
;; Maintainer: FSF
;; This file is part of GNU Emacs.
;; GNU Emacs is free software; you can redistribute it and/or modify
...
...
lisp/add-log.el
View file @
3a801d0c
;;; add-log.el --- change log maintenance commands for Emacs
;; Maintainer: FSF
;; Copyright (C) 1985, 86, 87, 88, 89, 90, 91, 1992
;; Free Software Foundation, Inc.
...
...
lisp/byte-run.el
View file @
3a801d0c
;; byte-run.el --- byte-compiler support for inlining
;; Copyright (C) 1992 Free Software Foundation, Inc.
;; Author: Jamie Zawinski <jwz@lucid.com>
;; Hallvard Furuseth <hbf@ulrik.uio.no>
;; Last-Modified: 13 Jul 1992
;; Keywords: internal
;; Copyright (C) 1992 Free Software Foundation, Inc.
;; This file is part of GNU Emacs.
;; GNU Emacs is free software; you can redistribute it and/or modify
...
...
lisp/calendar/appt.el
View file @
3a801d0c
;;; appt.el --- appointment notification functions.
;; Copyright (C) 1989, 1990 Free Software Foundation, Inc.
;; Author: Neil Mager <neilm@juliet.ll.mit.edu>
;; Version: 2.1
;; Last-Modified: 14 Jul 1992
;; Keywords: calendar
;; Copyright (C) 1989, 1990 Free Software Foundation, Inc.
;; This file is part of GNU Emacs.
;; GNU Emacs is free software; you can redistribute it and/or modify
...
...
lisp/calendar/calendar.el
View file @
3a801d0c
;;; calendar.el --- Calendar functions.
;;; Copyright (C) 1988, 1989, 1990, 1991 Free Software Foundation, Inc.
;; Author: Edward M. Reingold <reingold@cs.uiuc.edu>
;; Last-Modified: 30 Jun 1992
;; Keyword: calendar
(
defconst
calendar-version
"Version 4.02, released June 14, 1992"
)
;;; Copyright (C) 1988, 1989, 1990, 1991 Free Software Foundation, Inc.
;; This file is part of GNU Emacs.
;; GNU Emacs is distributed in the hope that it will be useful,
...
...
lisp/calendar/holidays.el
View file @
3a801d0c
;;; holidays.el --- holiday functions for the calendar package
;;; Copyright (C) 1989, 1990 Free Software Foundation, Inc.
;; Author: Edward M. Reingold <reingold@cs.uiuc.edu>
;; Last-Modified: 14 Jul 1992
;; Keywords: calendar
;;; Copyright (C) 1989, 1990 Free Software Foundation, Inc.
;; This file is part of GNU Emacs.
;; GNU Emacs is distributed in the hope that it will be useful,
...
...
lisp/case-table.el
View file @
3a801d0c
;;; case-table.el ---code to extend the character set and support case tables.
;; Copyright (C) 1988 Free Software Foundation, Inc.
;; Author: Howard Gayle
;; Maintainer: FSF
;; Last-Modified: 16 Mar 1992
;; Copyright (C) 1988 Free Software Foundation, Inc.
;; Keywords: i14n
;; This file is part of GNU Emacs.
...
...
lisp/cl.el
View file @
3a801d0c
;;; cl.el --- Common-Lisp extensions for GNU Emacs Lisp.
;; Copyright (C) 1987, 1988, 1989 Free Software Foundation, Inc.
;; Author: Cesar Quiroz <quiroz@cs.rochester.edu>
;; Last-Modified: 16 Mar 1992
;; Keywords: extensions
(
defvar
cl-version
"2.0 beta 29 October 1989"
)
;; Copyright (C) 1987, 1988, 1989 Free Software Foundation, Inc.
;; This file is part of GNU Emacs.
;; GNU Emacs is distributed in the hope that it will be useful,
...
...
lisp/cmuscheme.el
View file @
3a801d0c
;;; cmuscheme.el -- Scheme process in a buffer. Adapted from tea.el.
;; Author: Olin Shivers <olin.shivers@cs.cmu.edu>
;; Last-Modified: 16 Mar 1992
;; Keyword: processes, lisp
;;; Copyright Olin Shivers (1988)
...
...
lisp/comint.el
View file @
3a801d0c
;;; comint.el --- general command interpreter in a window stuff
;;; Copyright Olin Shivers (1988).
;; Maintainer: Olin Shivers <shivers@cs.cmu.edu>
;; Last-Modified: 16 Jul 1992
;; Version: 2.03
;; Keyword: estensions, processes
;;; Copyright Olin Shivers (1988).
;;; This file is part of GNU Emacs.
;;; GNU Emacs is free software; you can redistribute it and/or modify
...
...
lisp/dabbrev.el
View file @
3a801d0c
;;; dabbrev.el --- dynamic abbreviation package for GNU Emacs.
;; Maintainer: FSF
;; Last-Modified: 16 Mar 1992
;; Copyright (C) 1985, 1986 Free Software Foundation, Inc.
;; Last-Modified: 16 Mar 1992
;; Copyright (C) 1985, 1986 Free Software Foundation, Inc.
;; Maintainer: FSF
;; This file is part of GNU Emacs.
;; GNU Emacs is free software; you can redistribute it and/or modify
...
...
lisp/diary-lib.el
View file @
3a801d0c
;;; diary.el --- diary functions.
;; Copyright (C) 1989, 1990 Free Software Foundation, Inc.
;; Author: Edward M. Reingold <reingold@cs.uiuc.edu>
;; Last-Modified: 30 Jun 1992
;; Keyword: calendar
;; Copyright (C) 1989, 1990 Free Software Foundation, Inc.
;; This file is part of GNU Emacs.
;; GNU Emacs is distributed in the hope that it will be useful,
...
...
lisp/diff.el
View file @
3a801d0c
;;; diff.el --- "DIFF" mode for handling output from unix diff utility.
;; Copyright (C) 1990 Free Software Foundation, Inc.
;; Author: Frank P. Bresz <fpb@ittc.wec.com>
;; Maintainer: FSF
;; Created: 27 Jan 1989
;; Last-Modified: 21 Dec 1992
;; Keyword: unix, tools
;; Copyright (C) 1990 Free Software Foundation, Inc.
;; This file is part of GNU Emacs.
;; GNU Emacs is free software; you can redistribute it and/or modify
...
...
lisp/dired-aux.el
View file @
3a801d0c
;; dired-aux.el --- directory browsing command support
;; Copyright (C) 1985, 1986, 1992 Free Software Foundation, Inc.
;; Author: Sebastian Kremer <sk@thp.uni-koeln.de>.
;; Version: 5.234
;; Last-Modified: 14 Jul 1992
;; Copyright (C) 1985, 1986, 1992 Free Software Foundation, Inc.
;; This file is part of GNU Emacs.
...
...
lisp/ebuff-menu.el
View file @
3a801d0c
;;; ebuff-menu.el --- electric-buffer-list mode
;; Author: Richard Mlynarik <mly@ai.mit.edu>
;; Last-Modified: 21 Dec 1991
;; Copyright (C) 1985, 1986 Free Software Foundation, Inc.
;; Author: Richard Mlynarik <mly@ai.mit.edu>
;; This file is part of GNU Emacs.
;; GNU Emacs is free software; you can redistribute it and/or modify
...
...
lisp/echistory.el
View file @
3a801d0c
;;; echistory.el --- Electric Command History Mode
;; Copyright (C) 1985 Free Software Foundation, Inc.
;; Author: K. Shane Hartman
;; Maintainer: FSF
;; Last-Modified: 09 May 1991
;; Copyright (C) 1985 Free Software Foundation, Inc.
;; This file is part of GNU Emacs.
...
...
lisp/ehelp.el
View file @
3a801d0c
;;; ehelp.el --- bindings for electric-help mode
;; Copyright (C) 1986 Free Software Foundation, Inc.
;; Maintainer: FSF
;; Last-Modified: 16 Mar 1992
;; Keywords: help, extensions
;; Copyright (C) 1986 Free Software Foundation, Inc.
;; This file is part of GNU Emacs.
;; GNU Emacs is free software; you can redistribute it and/or modify
...
...
lisp/emacs-lisp/autoload.el
View file @
3a801d0c
;;; autoload.el --- maintain autoloads in loaddefs.el.
;;; Copyright (C) 1991, 1992 Free Software Foundation, Inc.
;;;
;; Author: Roland McGrath <roland@gnu.ai.mit.edu>
;; Last-Modified: 24 Jun 1992
;; Keyword: internal
;;; Copyright (C) 1991, 1992 Free Software Foundation, Inc.
;;;
;;; This program 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 2, or (at your option)
...
...
lisp/emacs-lisp/bytecomp.el
View file @
3a801d0c
;;; bytecomp.el --- compilation of Lisp code into byte code.
;;; Copyright (C) 1985, 1986, 1987, 1992 Free Software Foundation, Inc.
;; Author: Jamie Zawinski <jwz@lucid.com>
;; Hallvard Furuseth <hbf@ulrik.uio.no>
;; Last-Modified: 15 Jul 1992
;; Keywords: internal
;; Subsequently modified by RMS.
(
defconst
byte-compile-version
"FSF 2.1"
)
;;; Copyright (C) 1985, 1986, 1987, 1992 Free Software Foundation, Inc.
;; This file is part of GNU Emacs.
;; GNU Emacs is free software; you can redistribute it and/or modify
...
...
@@ -245,8 +244,17 @@ of `message.'")
(
defconst
byte-compile-warning-types
'
(
redefine
callargs
free-vars
unresolved
))
(
defvar
byte-compile-warnings
(
not
noninteractive
)
"*List of warnings that the byte-compiler should issue (t for all).
Valid elements of this list are `callargs', `redefine', `free-vars',
and `unresolved'."
)
Valid elements of this list are:
`free-vars' (references to variables not in the
current lexical scope)
`unresolved' (calls to unknown functions)
`callargs' (lambda calls with args that don't
match the lambda's definition)
`redefine' (function cell redefined from
a macro to a lambda or vice versa,
or redefined to take other args)
This variable defaults to nil in -batch mode, which is
slightly faster."
)
(
defvar
byte-compile-generate-call-tree
nil
"*Non-nil means collect call-graph information when compiling.
...
...
lisp/emacs-lisp/edebug.el
View file @
3a801d0c
;;; edebug.el --- a source-level debugger for emacs lisp
.
;;; edebug.el --- a source-level debugger for emacs lisp
;; Copyright (C) 1988, 1989, 1990, 1991 Free Software Foundation, Inc
;; Author: Daniel LaLiberte <liberte@cs.uiuc.edu>
;; Keywords: lisp, tools
;; This file is part of GNU Emacs.
;; GNU Emacs is distributed in the hope that it will be useful,
...
...
@@ -19,8 +22,9 @@
;; file named COPYING. Among other things, the copyright notice
;; and this notice must be preserved on all copies.
;;;================================================================
;;; This minor mode allows programmers to step through elisp source
;;;; Commentary:
;;; This minor mode allows programmers to step through Emacs Lisp source
;;; code while executing, set breakpoints, etc. See the texinfo
;;; document (being constructed...) for more detailed instructions
;;; than contained here. Send me your enhancement, ideas, bugs, or
...
...
@@ -152,7 +156,7 @@
;;;
;;; Revision 1.4 89/02/14 22:58:34 liberte
;;; Fix broken breakpointing.
;;; Temporarily widen
el
isp buffer during edebug.
;;; Temporarily widen
Emacs L
isp buffer during edebug.
;;;
;;; Revision 1.3 89/01/30 00:26:09 liberte
;;; More bug fixes for cond and let.
...
...
@@ -186,6 +190,8 @@
;; Use the "?" command in edebug to describe other commands.
;; See edebug.texinfo for more instructions.
;;; Code:
;;; Options
;;; -------
...
...
@@ -198,7 +204,7 @@ If nil, eval-region evaluates normally, but eval-defun with prefix arg
uses edebug-defun. eval-region is called by eval-defun, eval-last-sexp,
and eval-print-last-sexp.
You may wish to make this variable local to each
el
isp buffer by calling
You may wish to make this variable local to each
Emacs L
isp buffer by calling
(make-local-variable 'edebug-all-defuns) in your emacs-lisp-mode-hook.
You can use the function edebug-all-defuns to toggle its value."
)
...
...
@@ -266,7 +272,7 @@ edebug-print-trace-exit.")
(
defun
edebug-last-sexp
()
"Return the last sexp before point in current buffer.
Assumes
el
isp syntax is active."
Assumes
Emacs L
isp syntax is active."
(
car
(
read-from-string
(
buffer-substring
...
...
@@ -852,7 +858,7 @@ may be one of the following:
(
throw
'no-match
nil
))
(
edebug-syntax-error
"%s is not %s"
form
arg
))))
;; for loop defined in
el
isp manual
;; for loop defined in
Emacs L
isp manual
(
put
'for
'edebug-form-hook
'
(
symbolp
'from
form
'to
form
'do
&rest
form
))
...
...
@@ -2243,7 +2249,7 @@ print value into current buffer."
(
defun
edebug-mode
()
"Mode for
el
isp buffers while in edebug. Under construction.
"Mode for
Emacs L
isp buffers while in edebug. Under construction.
There are both buffer local and global key bindings to several
functions. E.g. edebug-step-through is bound to
...
...
Prev
1
2
3
4
Next
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