* Implement mail sending.
authorChris Hanson <org/chris-hanson/cph>
Sun, 21 Apr 1991 00:52:42 +0000 (00:52 +0000)
committerChris Hanson <org/chris-hanson/cph>
Sun, 21 Apr 1991 00:52:42 +0000 (00:52 +0000)
commit31b9f0dd20205110c181d18d28c05e5661ed9363
tree3b9b994852228e9fc10294bac5e229d74551578a
parent082b1803b39c1afcd4f2bcd35112e847952ca50e
* Implement mail sending.

* Implement M-x append-to-file, M-x tabify, C-u M-x indent-region.

* Change M-x undo to move point to the location of the most recent
  undone change.  This restores the behavior that was in effect before
  the last change to undo.

* Implement variable `enable-emacs-write-file-message', by default
  true, which changes file-output messages to be like Emacs.

* Fix simple bugs in auto save code, local variable binding.

* Add new slot to buffer, LOCAL-BINDINGS-INSTALLED?, that speeds up
  the test to determine if the buffer's local bindings are the ones
  currently installed in the variable value cells.

* Reimplement character search, character match, and string match.
  New implementation does not use regular expression primitives.
  A new set of low-level search and match primitives provides more
  power than the old ones did.

* Implement `run-synchronous-process'.  Reimplement `shell-command'
  and `shell-command-region' in terms of this new procedure.

* Implement `insert-region', which copies text directly from one
  buffer to another without making an intermediate copy.
35 files changed:
v7/src/edwin/autosv.scm
v7/src/edwin/buffer.scm
v7/src/edwin/bufinp.scm
v7/src/edwin/bufmnu.scm
v7/src/edwin/cinden.scm
v7/src/edwin/comint.scm
v7/src/edwin/comman.scm
v7/src/edwin/debuge.scm
v7/src/edwin/decls.scm
v7/src/edwin/dired.scm
v7/src/edwin/ed-ffi.scm
v7/src/edwin/edwin.ldr
v7/src/edwin/edwin.pkg
v7/src/edwin/filcom.scm
v7/src/edwin/fileio.scm
v7/src/edwin/fill.scm
v7/src/edwin/hlpcom.scm
v7/src/edwin/info.scm
v7/src/edwin/kilcom.scm
v7/src/edwin/lincom.scm
v7/src/edwin/macros.scm
v7/src/edwin/make.scm
v7/src/edwin/modefs.scm
v7/src/edwin/process.scm
v7/src/edwin/regexp.scm
v7/src/edwin/search.scm
v7/src/edwin/sercom.scm
v7/src/edwin/shell.scm
v7/src/edwin/simple.scm
v7/src/edwin/struct.scm
v7/src/edwin/things.scm
v7/src/edwin/undo.scm
v7/src/edwin/unix.scm
v7/src/edwin/utils.scm
v7/src/runtime/rgxcmp.scm