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
6594deb0
Commit
6594deb0
authored
May 30, 1992
by
Eric S. Raymond
Browse files
*** empty log message ***
parent
c88ab9ce
Changes
40
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
74 additions
and
25 deletions
+74
-25
lisp/emacs-lisp/lisp-mode.el
lisp/emacs-lisp/lisp-mode.el
+3
-1
lisp/emacs-lisp/lisp.el
lisp/emacs-lisp/lisp.el
+4
-1
lisp/emulation/mlconvert.el
lisp/emulation/mlconvert.el
+3
-1
lisp/emulation/mlsupport.el
lisp/emulation/mlsupport.el
+3
-1
lisp/ledit.el
lisp/ledit.el
+4
-1
lisp/loadup.el
lisp/loadup.el
+4
-1
lisp/lpr.el
lisp/lpr.el
+4
-1
lisp/macros.el
lisp/macros.el
+4
-1
lisp/mail/mail-utils.el
lisp/mail/mail-utils.el
+3
-1
lisp/mail/mailabbrev.el
lisp/mail/mailabbrev.el
+4
-1
lisp/mail/mailalias.el
lisp/mail/mailalias.el
+4
-1
lisp/mail/mailpost.el
lisp/mail/mailpost.el
+4
-3
lisp/makesum.el
lisp/makesum.el
+4
-1
lisp/man.el
lisp/man.el
+4
-1
lisp/map-ynp.el
lisp/map-ynp.el
+4
-1
lisp/medit.el
lisp/medit.el
+4
-2
lisp/mhspool.el
lisp/mhspool.el
+4
-1
lisp/mim-mode.el
lisp/mim-mode.el
+3
-1
lisp/mim-syntax.el
lisp/mim-syntax.el
+3
-3
lisp/misc.el
lisp/misc.el
+4
-1
No files found.
lisp/emacs-lisp/lisp-mode.el
View file @
6594deb0
;; Lisp mode, and its idiosyncratic commands.
;;; lisp-mode.el --- Lisp mode, and its idiosyncratic commands.
;; Copyright (C) 1985 Free Software Foundation, Inc.
;; This file is part of GNU Emacs.
...
...
@@ -614,3 +615,4 @@ means don't indent that line."
(
provide
'lisp-mode
)
;;; lisp-mode.el ends here
lisp/emacs-lisp/lisp.el
View file @
6594deb0
;; Lisp editing commands for Emacs
;;; lisp.el --- Lisp editing commands for Emacs
;; Copyright (C) 1985, 1986 Free Software Foundation, Inc.
;; This file is part of GNU Emacs.
...
...
@@ -260,3 +261,5 @@ function definitions, values or properties are considered."
(
with-output-to-temp-buffer
" *Completions*"
(
display-completion-list
list
)))
(
message
"Making completion list...%s"
"done"
)))))
;;; lisp.el ends here
lisp/emulation/mlconvert.el
View file @
6594deb0
;; Convert buffer of Mocklisp code to real lisp.
;;; mlconvert.el --- convert buffer of Mocklisp code to real lisp.
;; Copyright (C) 1985 Free Software Foundation, Inc.
;; This file is part of GNU Emacs.
...
...
@@ -271,3 +272,4 @@
;Variable pause-writes-files
;;; mlconvert.el ends here
lisp/emulation/mlsupport.el
View file @
6594deb0
;; Run-time support for mocklisp code.
;;; mlsupport.el --- run-time support for mocklisp code.
;; Copyright (C) 1985 Free Software Foundation, Inc.
;; This file is part of GNU Emacs.
...
...
@@ -404,3 +405,4 @@
(
provide
'mlsupport
)
;;; mlsupport.el ends here
lisp/ledit.el
View file @
6594deb0
;; Emacs side of ledit interface
;;; ledit.el --- Emacs side of ledit interface
;; Copyright (C) 1985 Free Software Foundation, Inc.
;; This file is part of GNU Emacs.
...
...
@@ -141,3 +142,5 @@ do (setq lisp-mode-hook 'ledit-from-lisp-mode)"
(setq mode-name "
Ledit
"
)
(
setq
major-mode
'ledit-mode
)
(
run-hooks
'ledit-mode-hook
)
)
;;; ledit.el ends here
lisp/loadup.el
View file @
6594deb0
;;Load up standardly loaded Lisp files for Emacs.
;;; loadup.el --- load up standardly loaded Lisp files for Emacs.
;; This is loaded into a bare Emacs to make a dumpable one.
;; Copyright (C) 1985, 1986, 1992 Free Software Foundation, Inc.
...
...
@@ -147,3 +148,5 @@
(
or
(
fboundp
'dump-emacs
)
(
eval
top-level
))
;;; loadup.el ends here
lisp/lpr.el
View file @
6594deb0
;; Print Emacs buffer on line printer.
;;; lpr.el --- print Emacs buffer on line printer.
;; Copyright (C) 1985, 1988, 1992 Free Software Foundation, Inc.
;; This file is part of GNU Emacs.
...
...
@@ -94,3 +95,5 @@ See definition of `print-region-1' for calling conventions.")
(
widen
)
(
erase-buffer
)
(
insert-buffer-substring
oldbuf
start
end
)
(
setq
start
(
point-min
)
end
(
point-max
))
)))
;;; lpr.el ends here
lisp/macros.el
View file @
6594deb0
;; Non-primitive commands for keyboard macros.
;;; macros.el --- non-primitive commands for keyboard macros.
;; Copyright (C) 1985, 1986, 1987 Free Software Foundation, Inc.
;; This file is part of GNU Emacs.
...
...
@@ -173,3 +174,5 @@ and then select the region of un-tablified names and use
;;;###autoload
(
define-key
ctl-x-map
"q"
'kbd-macro-query
)
;;; macros.el ends here
lisp/mail/mail-utils.el
View file @
6594deb0
;; Utility functions used both by rmail and rnews
;;; mail-utils.el --- utility functions used both by rmail and rnews
;; Copyright (C) 1985 Free Software Foundation, Inc.
;; This file is part of GNU Emacs.
...
...
@@ -200,3 +201,4 @@ If third arg ALL is non-nil, concatenate all such fields with commas between."
(
provide
'mail-utils
)
;;; mail-utils.el ends here
lisp/mail/mailabbrev.el
View file @
6594deb0
;;; Abbrev-expansion of mail aliases.
;;; mailabbrev.el --- abbrev-expansion of mail aliases.
;;; Copyright (C) 1985, 1986, 1987, 1992 Free Software Foundation, Inc.
;;; Created: 19 oct 90, Jamie Zawinski <jwz@lucid.com>
;;; Modified: 5 apr 92, Roland McGrath <roland@gnu.ai.mit.edu>
...
...
@@ -613,3 +614,5 @@ end of line."
(
t
; v19
(
fmakunbound
'expand-mail-aliases
))
)
;;; mailabbrev.el ends here
lisp/mail/mailalias.el
View file @
6594deb0
;; Expand mailing address aliases defined in ~/.mailrc.
;;; mailalias.el --- expand mailing address aliases defined in ~/.mailrc.
;; Copyright (C) 1985, 1987 Free Software Foundation, Inc.
;; This file is part of GNU Emacs.
...
...
@@ -167,3 +168,5 @@ DEFINITION can be one or more mail addresses separated by commas."
(
if
tem
(
rplacd
tem
definition
)
(
setq
mail-aliases
(
cons
(
cons
name
definition
)
mail-aliases
)))))
;;; mailalias.el ends here
lisp/mail/mailpost.el
View file @
6594deb0
;;
;; P O S T . E L
;;
;;; post.el --- RMAIL coupler to /usr/uci/post mailer
;; Yet another mail interface. this for the rmail system to provide
;; the missing sendmail interface on systems without /usr/lib/sendmail,
;; but with /usr/uci/post.
...
...
@@ -90,3 +89,5 @@ site-init."
(
kill-buffer
tembuf
)
(
if
(
bufferp
errbuf
)
(
switch-to-buffer
errbuf
)))))
;;; mailpost.el ends here
lisp/makesum.el
View file @
6594deb0
;; Generate key binding summary for Emacs
;;; makesum.el --- generate key binding summary for Emacs
;; Copyright (C) 1985 Free Software Foundation, Inc.
;; This file is part of GNU Emacs.
...
...
@@ -99,3 +100,5 @@ Previous contents of that buffer are killed first."
(
forward-line
1
)
(
setq
lines
(
cdr
lines
))))
(
goto-char
(
-
(
point-max
)
from-end
))))
;;; makesum.el ends here
lisp/man.el
View file @
6594deb0
;; Read in and display parts of Unix manual.
;;; man.el --- read in and display parts of Unix manual.
;; Copyright (C) 1985, 1986 Free Software Foundation, Inc.
;; This file is part of GNU Emacs.
...
...
@@ -165,3 +166,5 @@ where SECTION is the desired section of the manual, as in \"tty(4)\"."
(
if
(
equal
(
substring
name
-2
)
".z"
)
(
call-process
"pcat"
nil
t
nil
name
)
(
insert-file-contents
name
))))
;;; man.el ends here
lisp/map-ynp.el
View file @
6594deb0
;;; map-ynp.el -- General-purpose boolean question-asker.
;;; map-ynp.el --- General-purpose boolean question-asker.
;;; Copyright (C) 1991, 1992 Free Software Foundation, Inc.
;;; Written by Roland McGrath.
;;;
...
...
@@ -149,3 +150,5 @@ Returns the number of actions taken."
(
message
""
)
;; Return the number of actions that were taken.
actions
))
;;; map-ynp.el ends here
lisp/medit.el
View file @
6594deb0
;; Lisp interface between GNU Emacs and MEDIT package. Emacs under MDL.
;;; medit.el --- Lisp interface between GNU Emacs and MEDIT package.
;; Emacs under MDL.
;; Copyright (C) 1985 Free Software Foundation, Inc.
;; Principal author K. Shane Hartman
...
...
@@ -113,4 +115,4 @@ Like Mim mode, plus these special commands:
(
mim-mode
)
;;; medit.el ends here
lisp/mhspool.el
View file @
6594deb0
;;; MH folder access using NNTP for GNU Emacs
;;; mhspool.el --- MH folder access using NNTP for GNU Emacs
;; Copyright (C) 1988, 1989 Fujitsu Laboratories LTD.
;; Copyright (C) 1988, 1989, 1990 Masanobu UMEDA
;; $Header: mhspool.el,v 1.5 90/03/23 13:25:23 umerin Locked $
...
...
@@ -403,3 +404,5 @@ If the stream is opened, return T, otherwise return NIL."
))
(
provide
'mhspool
)
;;; mhspool.el ends here
lisp/mim-mode.el
View file @
6594deb0
;; Mim (MDL in MDL) mode.
;;; mim-mode.el --- Mim (MDL in MDL) mode.
;; Copyright (C) 1985 Free Software Foundation, Inc.
;; Principal author K. Shane Hartman
...
...
@@ -840,3 +841,4 @@ You need type only enough of the name to be unambiguous."
(
provide
'mim-mode
)
;;; mim-mode.el ends here
lisp/mim-syntax.el
View file @
6594deb0
;; Syntax checker for Mim (MDL).
;;; mim-syntax.el --- syntax checker for Mim (MDL).
;; Copyright (C) 1985 Free Software Foundation, Inc.
;; Principal author K. Shane Hartman
...
...
@@ -87,5 +88,4 @@ Answers correct or incorrect, cannot point out the error context."
(
message
"Syntax correct"
)
(
error
"Syntax incorrect"
)))))
;;; mim-syntax.el ends here
lisp/misc.el
View file @
6594deb0
;; Basic editing commands for Emacs
;;; misc.el --- basic editing commands for Emacs
;; Copyright (C) 1989 Free Software Foundation, Inc.
;; This file is part of GNU Emacs.
...
...
@@ -49,3 +50,5 @@ The characters copied are inserted in the buffer before point."
(
min
(
save-excursion
(
end-of-line
)
(
point
))
(
+
n
(
point
)))))))
(
insert
string
)))
;;; misc.el ends here
Prev
1
2
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