mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-02 02:10:46 -08:00
*** empty log message ***
This commit is contained in:
parent
841763034c
commit
282d89c00d
8 changed files with 55 additions and 39 deletions
|
|
@ -1,4 +1,4 @@
|
|||
;;; upd-copyr.el --- update the copyright notice in a GNU Emacs elisp file
|
||||
;;; upd-copyr.el --- update the copyright notice in a GNU Emacs Lisp file
|
||||
|
||||
;; Author: Roland McGrath <roland@gnu.ai.mit.edu>
|
||||
;; Last-Modified: 03 Jun 1991
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
;;; profile.el -- generate run time measurements of elisp functions
|
||||
;;; profile.el -- generate run time measurements of Emacs Lisp functions
|
||||
|
||||
;; Author: Boaz Ben-Zvi <boaz@lcs.mit.edu>
|
||||
;; Created: 7 Feb 1992
|
||||
|
|
@ -28,7 +28,7 @@
|
|||
|
||||
; DESCRIPTION:
|
||||
; ------------
|
||||
; This program can be used to monitor running time performance of elisp
|
||||
; This program can be used to monitor running time performance of Emacs Lisp
|
||||
; functions. It takes a list of functions and report the real time spent
|
||||
; inside these functions. It runs a process with a separate timer program.
|
||||
; Caveat: the C code included with this package requires BSD-compatible
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
;;;
|
||||
|
||||
;;;; Terminals that use XON/XOFF flow control can cause problems with
|
||||
;;;; GNU Emacs users. This file contains elisp code that makes it
|
||||
;;;; GNU Emacs users. This file contains Emacs Lisp code that makes it
|
||||
;;;; easy for a user to deal with this problem, when using such a
|
||||
;;;; terminal.
|
||||
;;;;
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
;; Incremental search minor mode.
|
||||
;; Copyright (C) 1992 Free Software Foundation, Inc.
|
||||
;; isearch-mode.el --- incremental search minor mode.
|
||||
|
||||
;; LCD Archive Entry:
|
||||
;; isearch-mode|Daniel LaLiberte|liberte@cs.uiuc.edu
|
||||
;; |A minor mode replacement for isearch.el.
|
||||
;; |$Date: 92/05/27 11:33:57 $|$Revision: 1.2 $|~/modes/isearch-mode.el
|
||||
;; Author: Daniel LaLiberte <liberte@cs.uiuc.edu>
|
||||
;; Version: 1.2
|
||||
;; Last-Modified: 27 May 1992
|
||||
|
||||
;; Copyright (C) 1992 Free Software Foundation, Inc.
|
||||
|
||||
;; This file is part of GNU Emacs.
|
||||
|
||||
|
|
@ -23,29 +23,7 @@
|
|||
;; file named COPYING. Among other things, the copyright notice
|
||||
;; and this notice must be preserved on all copies.
|
||||
|
||||
;;;====================================================================
|
||||
;;; Change History
|
||||
|
||||
;;; $Header: /import/kaplan/kaplan/liberte/Isearch/RCS/isearch-mode.el,v 1.2 92/05/27 11:33:57 liberte Exp Locker: liberte $
|
||||
;;; $Log: isearch-mode.el,v $
|
||||
;;; Revision 1.2 92/05/27 11:33:57 liberte
|
||||
;;; Several new commands and features have been added. Emacs version
|
||||
;;; 19 has a search ring, which is supported here. Other fixes found
|
||||
;;; in the version 19 isearch are included here. Also see variables
|
||||
;;; search-caps-disable-folding, search-nonincremental-instead,
|
||||
;;; search-whitespace-regexp, and commands isearch-toggle-regexp,
|
||||
;;; isearch-edit-string,
|
||||
;;;
|
||||
;;; Semi-modal searching is supported, using a recursive edit. If
|
||||
;;; isearching is started non-interactively by calling one of the
|
||||
;;; isearch commands (e.g. isearch-forward), it does not return
|
||||
;;; until the search is completed. You should still be able switch
|
||||
;;; buffers, so be careful not to get things confused.
|
||||
;;;
|
||||
|
||||
;;; Changes for 1.1
|
||||
;;; 3/18/92 Fixed invalid-regexp.
|
||||
;;; 3/18/92 Fixed yanking in regexps.
|
||||
;;; Commentary:
|
||||
|
||||
;;;====================================================================
|
||||
;; Instructions
|
||||
|
|
@ -80,6 +58,33 @@
|
|||
;; buffer; ideally, the echo area should redisplay the searching status.
|
||||
;; A select-window-hook might be useful.
|
||||
|
||||
;;; Change Log:
|
||||
|
||||
;;;====================================================================
|
||||
|
||||
;;; $Header: /import/kaplan/kaplan/liberte/Isearch/RCS/isearch-mode.el,v 1.2 92/05/27 11:33:57 liberte Exp Locker: liberte $
|
||||
;;; $Log: isearch-mode.el,v $
|
||||
;;; Revision 1.2 92/05/27 11:33:57 liberte
|
||||
;;; Several new commands and features have been added. Emacs version
|
||||
;;; 19 has a search ring, which is supported here. Other fixes found
|
||||
;;; in the version 19 isearch are included here. Also see variables
|
||||
;;; search-caps-disable-folding, search-nonincremental-instead,
|
||||
;;; search-whitespace-regexp, and commands isearch-toggle-regexp,
|
||||
;;; isearch-edit-string,
|
||||
;;;
|
||||
;;; Semi-modal searching is supported, using a recursive edit. If
|
||||
;;; isearching is started non-interactively by calling one of the
|
||||
;;; isearch commands (e.g. isearch-forward), it does not return
|
||||
;;; until the search is completed. You should still be able switch
|
||||
;;; buffers, so be careful not to get things confused.
|
||||
;;;
|
||||
|
||||
;;; Changes for 1.1
|
||||
;;; 3/18/92 Fixed invalid-regexp.
|
||||
;;; 3/18/92 Fixed yanking in regexps.
|
||||
|
||||
;;; Code:
|
||||
|
||||
;;;=========================================================================
|
||||
;;; The following, defined in loaddefs.el, are still used with isearch-mode.
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,9 @@
|
|||
;;Additions to shell mode for use with kermit, etc.
|
||||
;;Feb 1988, Jeff Norden - jeff@colgate.csnet
|
||||
;;; kermit.el --- additions to shell mode for use with kermit, etc.
|
||||
|
||||
;; Author: Jeff Norden <jeff@colgate.csnet>
|
||||
;; Created: 15 Feb 1988
|
||||
;; Last-modified: 12 Mar 1992
|
||||
|
||||
;; Copyright (C) 1988 Free Software Foundation, Inc.
|
||||
|
||||
;; This file is part of GNU Emacs.
|
||||
|
|
@ -18,7 +22,7 @@
|
|||
;; along with GNU Emacs; see the file COPYING. If not, write to
|
||||
;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
(require 'shell)
|
||||
;;; Commentary
|
||||
|
||||
;; I'm not sure, but I think somebody asked about running kermit under shell
|
||||
;; mode a while ago. Anyway, here is some code that I find useful. The result
|
||||
|
|
@ -69,6 +73,8 @@
|
|||
;; Please let me know if any bugs turn up.
|
||||
;; Feb 1988, Jeff Norden - jeff@colgate.csnet
|
||||
|
||||
(require 'shell)
|
||||
|
||||
(defvar kermit-esc-char "\C-\\" "*Kermit's escape char")
|
||||
|
||||
(defun kermit-esc ()
|
||||
|
|
@ -136,4 +142,4 @@ command `kermit | tr -d '\\015''."
|
|||
(interactive)
|
||||
(set-process-filter (get-buffer-process (current-buffer)) nil))
|
||||
|
||||
|
||||
;;; kermit.el ends here
|
||||
|
|
|
|||
|
|
@ -63,7 +63,7 @@
|
|||
;; It may be good style to put a set of redundant braces around your
|
||||
;; main program. This will let you reindent it with meta-^q.
|
||||
|
||||
;; Known problems (these are all caused by limitations in the elisp
|
||||
;; Known problems (these are all caused by limitations in the Emacs Lisp
|
||||
;; parsing routine (parse-partial-sexp), which was not designed for such
|
||||
;; a rich language; writing a more suitable parser would be a big job):
|
||||
;; 1) Regular expression delimitors do not act as quotes, so special
|
||||
|
|
|
|||
|
|
@ -48,7 +48,7 @@
|
|||
;; modified: 12-Apr-1989 baw (incorp other mail yank features seen on net)
|
||||
;; created : 16-Feb-1989 baw (mod vanilla fn indent-rigidly mail-yank-original)
|
||||
|
||||
;; Though I wrote this package basically from scratch, as an elisp
|
||||
;; Though I wrote this package basically from scratch, as an Emacs Lisp
|
||||
;; learning exercise, it was inspired by postings of similar packages to
|
||||
;; the gnu.emacs newsgroup over the past month or so.
|
||||
;;
|
||||
|
|
|
|||
|
|
@ -1,5 +1,8 @@
|
|||
;;; ispell.el --- this is the GNU EMACS interface to GNU ISPELL version 3.
|
||||
|
||||
;; Maintainer: FSF
|
||||
;; Last-Modified: 02 Jun 1992
|
||||
|
||||
;;Copyright (C) 1990, 1991 Free Software Foundation, Inc.
|
||||
;;
|
||||
;;This file is part of GNU Emacs.
|
||||
|
|
@ -18,6 +21,8 @@
|
|||
;;along with GNU Emacs; see the file COPYING. If not, write to
|
||||
;;the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
;;; Code:
|
||||
|
||||
(defvar ispell-have-new-look t
|
||||
"T if default 'look' program has the -r flag.")
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue