1992-05-30 21:11:25 +00:00
|
|
|
|
;;; subr.el --- basic lisp subroutines for Emacs
|
1992-07-15 21:31:44 +00:00
|
|
|
|
|
2004-09-19 06:07:38 +00:00
|
|
|
|
;; Copyright (C) 1985, 1986, 1992, 1994, 1995, 1999, 2000, 2001, 2002, 2003,
|
2010-01-13 08:35:10 +00:00
|
|
|
|
;; 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
|
1990-11-05 10:06:02 +00:00
|
|
|
|
|
2002-05-02 05:41:46 +00:00
|
|
|
|
;; Maintainer: FSF
|
|
|
|
|
;; Keywords: internal
|
|
|
|
|
|
1990-11-05 10:06:02 +00:00
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
|
2008-05-06 08:06:51 +00:00
|
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
1990-11-05 10:06:02 +00:00
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2008-05-06 08:06:51 +00:00
|
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
;; (at your option) any later version.
|
1990-11-05 10:06:02 +00:00
|
|
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
2008-05-06 08:06:51 +00:00
|
|
|
|
;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
|
1990-11-05 10:06:02 +00:00
|
|
|
|
|
2001-07-15 19:53:53 +00:00
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
1992-07-15 21:31:44 +00:00
|
|
|
|
;;; Code:
|
2008-10-20 09:40:23 +00:00
|
|
|
|
|
1997-07-20 17:36:48 +00:00
|
|
|
|
(defvar custom-declare-variable-list nil
|
|
|
|
|
"Record `defcustom' calls made before `custom.el' is loaded to handle them.
|
|
|
|
|
Each element of this list holds the arguments to one call to `defcustom'.")
|
|
|
|
|
|
1997-09-01 19:42:16 +00:00
|
|
|
|
;; Use this, rather than defcustom, in subr.el and other files loaded
|
1997-07-20 17:36:48 +00:00
|
|
|
|
;; before custom.el.
|
|
|
|
|
(defun custom-declare-variable-early (&rest arguments)
|
|
|
|
|
(setq custom-declare-variable-list
|
|
|
|
|
(cons arguments custom-declare-variable-list)))
|
2002-03-24 19:46:58 +00:00
|
|
|
|
|
2007-12-03 00:33:35 +00:00
|
|
|
|
(defmacro declare-function (fn file &optional arglist fileonly)
|
|
|
|
|
"Tell the byte-compiler that function FN is defined, in FILE.
|
|
|
|
|
Optional ARGLIST is the argument list used by the function. The
|
|
|
|
|
FILE argument is not used by the byte-compiler, but by the
|
|
|
|
|
`check-declare' package, which checks that FILE contains a
|
|
|
|
|
definition for FN. ARGLIST is used by both the byte-compiler and
|
|
|
|
|
`check-declare' to check for consistency.
|
|
|
|
|
|
|
|
|
|
FILE can be either a Lisp file (in which case the \".el\"
|
|
|
|
|
extension is optional), or a C file. C files are expanded
|
|
|
|
|
relative to the Emacs \"src/\" directory. Lisp files are
|
|
|
|
|
searched for using `locate-library', and if that fails they are
|
|
|
|
|
expanded relative to the location of the file containing the
|
|
|
|
|
declaration. A FILE with an \"ext:\" prefix is an external file.
|
|
|
|
|
`check-declare' will check such files if they are found, and skip
|
|
|
|
|
them without error if they are not.
|
|
|
|
|
|
|
|
|
|
FILEONLY non-nil means that `check-declare' will only check that
|
|
|
|
|
FILE exists, not that it defines FN. This is intended for
|
|
|
|
|
function-definitions that `check-declare' does not recognize, e.g.
|
|
|
|
|
`defstruct'.
|
|
|
|
|
|
|
|
|
|
To specify a value for FILEONLY without passing an argument list,
|
|
|
|
|
set ARGLIST to `t'. This is necessary because `nil' means an
|
|
|
|
|
empty argument list, rather than an unspecified one.
|
|
|
|
|
|
|
|
|
|
Note that for the purposes of `check-declare', this statement
|
2009-10-01 02:03:38 +00:00
|
|
|
|
must be the first non-whitespace on a line.
|
2007-12-03 00:33:35 +00:00
|
|
|
|
|
2008-12-13 04:12:45 +00:00
|
|
|
|
For more information, see Info node `(elisp)Declaring Functions'."
|
2007-12-03 00:33:35 +00:00
|
|
|
|
;; Does nothing - byte-compile-declare-function does the work.
|
|
|
|
|
nil)
|
2008-10-20 16:14:06 +00:00
|
|
|
|
|
1993-04-10 06:21:55 +00:00
|
|
|
|
|
2005-10-22 15:01:08 +00:00
|
|
|
|
;;;; Basic Lisp macros.
|
1993-04-10 06:21:55 +00:00
|
|
|
|
|
2001-11-08 00:57:57 +00:00
|
|
|
|
(defalias 'not 'null)
|
|
|
|
|
|
2004-04-16 12:51:06 +00:00
|
|
|
|
(defmacro noreturn (form)
|
2005-12-30 02:59:47 +00:00
|
|
|
|
"Evaluate FORM, expecting it not to return.
|
|
|
|
|
If FORM does return, signal an error."
|
2004-04-16 12:51:06 +00:00
|
|
|
|
`(prog1 ,form
|
|
|
|
|
(error "Form marked with `noreturn' did return")))
|
|
|
|
|
|
|
|
|
|
(defmacro 1value (form)
|
2005-12-30 02:59:47 +00:00
|
|
|
|
"Evaluate FORM, expecting a constant return value.
|
|
|
|
|
This is the global do-nothing version. There is also `testcover-1value'
|
|
|
|
|
that complains if FORM ever does return differing values."
|
2004-04-16 12:51:06 +00:00
|
|
|
|
form)
|
|
|
|
|
|
2006-07-09 02:00:10 +00:00
|
|
|
|
(defmacro def-edebug-spec (symbol spec)
|
|
|
|
|
"Set the `edebug-form-spec' property of SYMBOL according to SPEC.
|
2009-07-14 07:45:56 +00:00
|
|
|
|
Both SYMBOL and SPEC are unevaluated. The SPEC can be:
|
|
|
|
|
0 (instrument no arguments); t (instrument all arguments);
|
|
|
|
|
a symbol (naming a function with an Edebug specification); or a list.
|
|
|
|
|
The elements of the list describe the argument types; see
|
|
|
|
|
\(info \"(elisp)Specification List\") for details."
|
2006-07-09 02:00:10 +00:00
|
|
|
|
`(put (quote ,symbol) 'edebug-form-spec (quote ,spec)))
|
|
|
|
|
|
1993-04-10 06:21:55 +00:00
|
|
|
|
(defmacro lambda (&rest cdr)
|
|
|
|
|
"Return a lambda expression.
|
|
|
|
|
A call of the form (lambda ARGS DOCSTRING INTERACTIVE BODY) is
|
|
|
|
|
self-quoting; the result of evaluating the lambda expression is the
|
|
|
|
|
expression itself. The lambda expression may then be treated as a
|
1994-12-15 18:25:24 +00:00
|
|
|
|
function, i.e., stored as the function value of a symbol, passed to
|
2005-06-21 14:10:34 +00:00
|
|
|
|
`funcall' or `mapcar', etc.
|
1994-12-15 18:25:24 +00:00
|
|
|
|
|
1993-04-10 06:21:55 +00:00
|
|
|
|
ARGS should take the same form as an argument list for a `defun'.
|
1995-06-27 06:52:56 +00:00
|
|
|
|
DOCSTRING is an optional documentation string.
|
|
|
|
|
If present, it should describe how to call the function.
|
|
|
|
|
But documentation strings are usually not useful in nameless functions.
|
1993-04-10 06:21:55 +00:00
|
|
|
|
INTERACTIVE should be a call to the function `interactive', which see.
|
|
|
|
|
It may also be omitted.
|
2004-05-07 01:06:20 +00:00
|
|
|
|
BODY should be a list of Lisp expressions.
|
|
|
|
|
|
|
|
|
|
\(fn ARGS [DOCSTRING] [INTERACTIVE] BODY)"
|
1993-04-10 06:21:55 +00:00
|
|
|
|
;; Note that this definition should not use backquotes; subr.el should not
|
|
|
|
|
;; depend on backquote.el.
|
|
|
|
|
(list 'function (cons 'lambda cdr)))
|
|
|
|
|
|
2009-09-17 20:47:48 +00:00
|
|
|
|
(if (null (featurep 'cl))
|
|
|
|
|
(progn
|
2009-09-17 15:58:35 +00:00
|
|
|
|
;; If we reload subr.el after having loaded CL, be careful not to
|
|
|
|
|
;; overwrite CL's extended definition of `dolist', `dotimes',
|
|
|
|
|
;; `declare', `push' and `pop'.
|
1999-08-29 20:27:40 +00:00
|
|
|
|
(defmacro push (newelt listname)
|
1999-09-07 06:37:06 +00:00
|
|
|
|
"Add NEWELT to the list stored in the symbol LISTNAME.
|
1999-08-29 20:27:40 +00:00
|
|
|
|
This is equivalent to (setq LISTNAME (cons NEWELT LISTNAME)).
|
1999-08-29 20:23:54 +00:00
|
|
|
|
LISTNAME must be a symbol."
|
2003-06-18 21:49:55 +00:00
|
|
|
|
(declare (debug (form sexp)))
|
1999-08-31 13:12:46 +00:00
|
|
|
|
(list 'setq listname
|
2009-09-17 15:58:35 +00:00
|
|
|
|
(list 'cons newelt listname)))
|
1999-08-29 20:23:54 +00:00
|
|
|
|
|
|
|
|
|
(defmacro pop (listname)
|
|
|
|
|
"Return the first element of LISTNAME's value, and remove it from the list.
|
|
|
|
|
LISTNAME must be a symbol whose value is a list.
|
|
|
|
|
If the value is nil, `pop' returns nil but does not actually
|
|
|
|
|
change the list."
|
2003-06-18 21:49:55 +00:00
|
|
|
|
(declare (debug (sexp)))
|
2002-06-14 06:15:32 +00:00
|
|
|
|
(list 'car
|
2009-09-17 15:58:35 +00:00
|
|
|
|
(list 'prog1 listname
|
2009-09-17 20:47:48 +00:00
|
|
|
|
(list 'setq listname (list 'cdr listname)))))
|
|
|
|
|
))
|
1999-08-29 20:23:54 +00:00
|
|
|
|
|
1997-01-08 06:09:02 +00:00
|
|
|
|
(defmacro when (cond &rest body)
|
2007-03-18 00:44:24 +00:00
|
|
|
|
"If COND yields non-nil, do BODY, else return nil.
|
|
|
|
|
When COND yields non-nil, eval BODY forms sequentially and return
|
|
|
|
|
value of last one, or nil if there are none.
|
|
|
|
|
|
2007-07-14 11:11:43 +00:00
|
|
|
|
\(fn COND BODY...)"
|
2003-05-17 22:00:40 +00:00
|
|
|
|
(declare (indent 1) (debug t))
|
1997-01-08 06:09:02 +00:00
|
|
|
|
(list 'if cond (cons 'progn body)))
|
1993-04-10 06:21:55 +00:00
|
|
|
|
|
1997-01-08 06:09:02 +00:00
|
|
|
|
(defmacro unless (cond &rest body)
|
2007-03-18 00:44:24 +00:00
|
|
|
|
"If COND yields nil, do BODY, else return nil.
|
|
|
|
|
When COND yields nil, eval BODY forms sequentially and return
|
|
|
|
|
value of last one, or nil if there are none.
|
|
|
|
|
|
2007-07-14 11:11:43 +00:00
|
|
|
|
\(fn COND BODY...)"
|
2003-05-17 22:00:40 +00:00
|
|
|
|
(declare (indent 1) (debug t))
|
1997-01-08 06:09:02 +00:00
|
|
|
|
(cons 'if (cons cond (cons nil body))))
|
1997-08-23 18:55:52 +00:00
|
|
|
|
|
2009-09-17 20:47:48 +00:00
|
|
|
|
(if (null (featurep 'cl))
|
|
|
|
|
(progn
|
2009-09-17 15:58:35 +00:00
|
|
|
|
;; If we reload subr.el after having loaded CL, be careful not to
|
|
|
|
|
;; overwrite CL's extended definition of `dolist', `dotimes',
|
|
|
|
|
;; `declare', `push' and `pop'.
|
2006-07-24 17:01:08 +00:00
|
|
|
|
(defvar --dolist-tail-- nil
|
|
|
|
|
"Temporary variable used in `dolist' expansion.")
|
|
|
|
|
|
2000-01-21 02:08:58 +00:00
|
|
|
|
(defmacro dolist (spec &rest body)
|
2003-05-17 22:00:40 +00:00
|
|
|
|
"Loop over a list.
|
2000-01-21 02:08:58 +00:00
|
|
|
|
Evaluate BODY with VAR bound to each car from LIST, in turn.
|
2003-05-17 22:00:40 +00:00
|
|
|
|
Then evaluate RESULT to get return value, default nil.
|
|
|
|
|
|
2003-07-08 16:57:15 +00:00
|
|
|
|
\(fn (VAR LIST [RESULT]) BODY...)"
|
2003-05-17 22:00:40 +00:00
|
|
|
|
(declare (indent 1) (debug ((symbolp form &optional form) body)))
|
2006-07-24 17:01:08 +00:00
|
|
|
|
;; It would be cleaner to create an uninterned symbol,
|
|
|
|
|
;; but that uses a lot more space when many functions in many files
|
|
|
|
|
;; use dolist.
|
|
|
|
|
(let ((temp '--dolist-tail--))
|
2003-05-17 22:00:40 +00:00
|
|
|
|
`(let ((,temp ,(nth 1 spec))
|
|
|
|
|
,(car spec))
|
|
|
|
|
(while ,temp
|
|
|
|
|
(setq ,(car spec) (car ,temp))
|
2006-07-24 17:01:08 +00:00
|
|
|
|
,@body
|
|
|
|
|
(setq ,temp (cdr ,temp)))
|
2003-05-17 22:00:40 +00:00
|
|
|
|
,@(if (cdr (cdr spec))
|
|
|
|
|
`((setq ,(car spec) nil) ,@(cdr (cdr spec)))))))
|
2000-01-21 02:08:58 +00:00
|
|
|
|
|
2006-07-24 17:01:08 +00:00
|
|
|
|
(defvar --dotimes-limit-- nil
|
|
|
|
|
"Temporary variable used in `dotimes' expansion.")
|
|
|
|
|
|
2000-01-21 02:08:58 +00:00
|
|
|
|
(defmacro dotimes (spec &rest body)
|
2003-05-17 22:00:40 +00:00
|
|
|
|
"Loop a certain number of times.
|
2000-01-21 02:08:58 +00:00
|
|
|
|
Evaluate BODY with VAR bound to successive integers running from 0,
|
|
|
|
|
inclusive, to COUNT, exclusive. Then evaluate RESULT to get
|
2003-05-17 22:00:40 +00:00
|
|
|
|
the return value (nil if RESULT is omitted).
|
|
|
|
|
|
2003-07-08 16:57:15 +00:00
|
|
|
|
\(fn (VAR COUNT [RESULT]) BODY...)"
|
2003-05-17 22:00:40 +00:00
|
|
|
|
(declare (indent 1) (debug dolist))
|
2006-07-24 17:01:08 +00:00
|
|
|
|
;; It would be cleaner to create an uninterned symbol,
|
|
|
|
|
;; but that uses a lot more space when many functions in many files
|
|
|
|
|
;; use dotimes.
|
|
|
|
|
(let ((temp '--dotimes-limit--)
|
2003-05-17 22:00:40 +00:00
|
|
|
|
(start 0)
|
|
|
|
|
(end (nth 1 spec)))
|
|
|
|
|
`(let ((,temp ,end)
|
|
|
|
|
(,(car spec) ,start))
|
|
|
|
|
(while (< ,(car spec) ,temp)
|
|
|
|
|
,@body
|
|
|
|
|
(setq ,(car spec) (1+ ,(car spec))))
|
|
|
|
|
,@(cdr (cdr spec)))))
|
2000-01-21 02:08:58 +00:00
|
|
|
|
|
2004-04-16 12:51:06 +00:00
|
|
|
|
(defmacro declare (&rest specs)
|
|
|
|
|
"Do not evaluate any arguments and return nil.
|
|
|
|
|
Treated as a declaration when used at the right place in a
|
2004-05-07 01:06:20 +00:00
|
|
|
|
`defmacro' form. \(See Info anchor `(elisp)Definition of declare'.)"
|
2009-09-17 20:47:48 +00:00
|
|
|
|
nil)
|
|
|
|
|
))
|
2008-05-07 02:57:53 +00:00
|
|
|
|
|
|
|
|
|
(defmacro ignore-errors (&rest body)
|
|
|
|
|
"Execute BODY; if an error occurs, return nil.
|
|
|
|
|
Otherwise, return result of last form in BODY."
|
2010-08-11 13:43:49 +00:00
|
|
|
|
(declare (debug t) (indent 0))
|
2008-05-07 02:57:53 +00:00
|
|
|
|
`(condition-case nil (progn ,@body) (error nil)))
|
2005-10-22 15:01:08 +00:00
|
|
|
|
|
|
|
|
|
;;;; Basic Lisp functions.
|
|
|
|
|
|
|
|
|
|
(defun ignore (&rest ignore)
|
|
|
|
|
"Do nothing and return nil.
|
|
|
|
|
This function accepts any number of arguments, but ignores them."
|
|
|
|
|
(interactive)
|
|
|
|
|
nil)
|
|
|
|
|
|
2009-10-16 03:21:18 +00:00
|
|
|
|
;; Signal a compile-error if the first arg is missing.
|
2005-10-22 15:01:08 +00:00
|
|
|
|
(defun error (&rest args)
|
|
|
|
|
"Signal an error, making error message by passing all args to `format'.
|
|
|
|
|
In Emacs, the convention is that error messages start with a capital
|
|
|
|
|
letter but *do not* end with a period. Please follow this convention
|
2009-10-16 03:21:18 +00:00
|
|
|
|
for the sake of consistency."
|
2005-10-22 15:01:08 +00:00
|
|
|
|
(while t
|
|
|
|
|
(signal 'error (list (apply 'format args)))))
|
2010-09-14 11:11:44 +00:00
|
|
|
|
(set-advertised-calling-convention 'error '(string &rest args) "23.1")
|
2005-10-22 15:01:08 +00:00
|
|
|
|
|
|
|
|
|
;; We put this here instead of in frame.el so that it's defined even on
|
|
|
|
|
;; systems where frame.el isn't loaded.
|
|
|
|
|
(defun frame-configuration-p (object)
|
|
|
|
|
"Return non-nil if OBJECT seems to be a frame configuration.
|
|
|
|
|
Any list whose car is `frame-configuration' is assumed to be a frame
|
|
|
|
|
configuration."
|
|
|
|
|
(and (consp object)
|
|
|
|
|
(eq (car object) 'frame-configuration)))
|
|
|
|
|
|
|
|
|
|
(defun functionp (object)
|
2008-04-05 20:22:22 +00:00
|
|
|
|
"Non-nil if OBJECT is a function."
|
2005-10-22 15:01:08 +00:00
|
|
|
|
(or (and (symbolp object) (fboundp object)
|
|
|
|
|
(condition-case nil
|
|
|
|
|
(setq object (indirect-function object))
|
|
|
|
|
(error nil))
|
|
|
|
|
(eq (car-safe object) 'autoload)
|
|
|
|
|
(not (car-safe (cdr-safe (cdr-safe (cdr-safe (cdr-safe object)))))))
|
2008-04-05 20:22:22 +00:00
|
|
|
|
(and (subrp object)
|
|
|
|
|
;; Filter out special forms.
|
|
|
|
|
(not (eq 'unevalled (cdr (subr-arity object)))))
|
|
|
|
|
(byte-code-function-p object)
|
2005-10-22 15:01:08 +00:00
|
|
|
|
(eq (car-safe object) 'lambda)))
|
|
|
|
|
|
|
|
|
|
;;;; List functions.
|
2004-04-16 12:51:06 +00:00
|
|
|
|
|
1997-08-23 18:55:52 +00:00
|
|
|
|
(defsubst caar (x)
|
|
|
|
|
"Return the car of the car of X."
|
|
|
|
|
(car (car x)))
|
|
|
|
|
|
|
|
|
|
(defsubst cadr (x)
|
|
|
|
|
"Return the car of the cdr of X."
|
|
|
|
|
(car (cdr x)))
|
|
|
|
|
|
|
|
|
|
(defsubst cdar (x)
|
|
|
|
|
"Return the cdr of the car of X."
|
|
|
|
|
(cdr (car x)))
|
|
|
|
|
|
|
|
|
|
(defsubst cddr (x)
|
|
|
|
|
"Return the cdr of the cdr of X."
|
|
|
|
|
(cdr (cdr x)))
|
1997-08-23 19:10:42 +00:00
|
|
|
|
|
2004-05-07 01:06:20 +00:00
|
|
|
|
(defun last (list &optional n)
|
|
|
|
|
"Return the last link of LIST. Its car is the last element.
|
|
|
|
|
If LIST is nil, return nil.
|
|
|
|
|
If N is non-nil, return the Nth-to-last link of LIST.
|
|
|
|
|
If N is bigger than the length of LIST, return LIST."
|
1997-08-27 22:34:30 +00:00
|
|
|
|
(if n
|
2004-05-07 01:06:20 +00:00
|
|
|
|
(let ((m 0) (p list))
|
1997-08-27 22:34:30 +00:00
|
|
|
|
(while (consp p)
|
|
|
|
|
(setq m (1+ m) p (cdr p)))
|
|
|
|
|
(if (<= n 0) p
|
2004-05-07 01:06:20 +00:00
|
|
|
|
(if (< n m) (nthcdr (- m n) list) list)))
|
|
|
|
|
(while (consp (cdr list))
|
|
|
|
|
(setq list (cdr list)))
|
|
|
|
|
list))
|
1998-07-31 10:53:30 +00:00
|
|
|
|
|
2004-05-07 01:06:20 +00:00
|
|
|
|
(defun butlast (list &optional n)
|
2004-07-25 05:45:53 +00:00
|
|
|
|
"Return a copy of LIST with the last N elements removed."
|
2004-05-07 01:06:20 +00:00
|
|
|
|
(if (and n (<= n 0)) list
|
|
|
|
|
(nbutlast (copy-sequence list) n)))
|
2000-12-28 12:15:44 +00:00
|
|
|
|
|
2004-05-07 01:06:20 +00:00
|
|
|
|
(defun nbutlast (list &optional n)
|
2000-12-28 12:15:44 +00:00
|
|
|
|
"Modifies LIST to remove the last N elements."
|
2004-05-07 01:06:20 +00:00
|
|
|
|
(let ((m (length list)))
|
2000-12-28 12:15:44 +00:00
|
|
|
|
(or n (setq n 1))
|
|
|
|
|
(and (< n m)
|
|
|
|
|
(progn
|
2004-05-07 01:06:20 +00:00
|
|
|
|
(if (> n 0) (setcdr (nthcdr (- (1- m) n) list) nil))
|
|
|
|
|
list))))
|
2000-12-28 12:15:44 +00:00
|
|
|
|
|
2004-04-16 12:51:06 +00:00
|
|
|
|
(defun delete-dups (list)
|
|
|
|
|
"Destructively remove `equal' duplicates from LIST.
|
|
|
|
|
Store the result in LIST and return it. LIST must be a proper list.
|
|
|
|
|
Of several `equal' occurrences of an element in LIST, the first
|
|
|
|
|
one is kept."
|
|
|
|
|
(let ((tail list))
|
|
|
|
|
(while tail
|
|
|
|
|
(setcdr tail (delete (car tail) (cdr tail)))
|
|
|
|
|
(setq tail (cdr tail))))
|
|
|
|
|
list)
|
|
|
|
|
|
2003-04-05 02:13:44 +00:00
|
|
|
|
(defun number-sequence (from &optional to inc)
|
2003-04-03 02:43:11 +00:00
|
|
|
|
"Return a sequence of numbers from FROM to TO (both inclusive) as a list.
|
2004-04-16 12:51:06 +00:00
|
|
|
|
INC is the increment used between numbers in the sequence and defaults to 1.
|
|
|
|
|
So, the Nth element of the list is \(+ FROM \(* N INC)) where N counts from
|
|
|
|
|
zero. TO is only included if there is an N for which TO = FROM + N * INC.
|
|
|
|
|
If TO is nil or numerically equal to FROM, return \(FROM).
|
|
|
|
|
If INC is positive and TO is less than FROM, or INC is negative
|
|
|
|
|
and TO is larger than FROM, return nil.
|
|
|
|
|
If INC is zero and TO is neither nil nor numerically equal to
|
|
|
|
|
FROM, signal an error.
|
|
|
|
|
|
|
|
|
|
This function is primarily designed for integer arguments.
|
|
|
|
|
Nevertheless, FROM, TO and INC can be integer or float. However,
|
|
|
|
|
floating point arithmetic is inexact. For instance, depending on
|
|
|
|
|
the machine, it may quite well happen that
|
|
|
|
|
\(number-sequence 0.4 0.6 0.2) returns the one element list \(0.4),
|
|
|
|
|
whereas \(number-sequence 0.4 0.8 0.2) returns a list with three
|
|
|
|
|
elements. Thus, if some of the arguments are floats and one wants
|
|
|
|
|
to make sure that TO is included, one may have to explicitly write
|
|
|
|
|
TO as \(+ FROM \(* N INC)) or use a variable whose value was
|
|
|
|
|
computed with this exact expression. Alternatively, you can,
|
|
|
|
|
of course, also replace TO with a slightly larger value
|
|
|
|
|
\(or a slightly more negative value if INC is negative)."
|
|
|
|
|
(if (or (not to) (= from to))
|
2003-04-05 02:13:44 +00:00
|
|
|
|
(list from)
|
|
|
|
|
(or inc (setq inc 1))
|
2004-04-16 12:51:06 +00:00
|
|
|
|
(when (zerop inc) (error "The increment can not be zero"))
|
|
|
|
|
(let (seq (n 0) (next from))
|
|
|
|
|
(if (> inc 0)
|
|
|
|
|
(while (<= next to)
|
|
|
|
|
(setq seq (cons next seq)
|
|
|
|
|
n (1+ n)
|
|
|
|
|
next (+ from (* n inc))))
|
|
|
|
|
(while (>= next to)
|
|
|
|
|
(setq seq (cons next seq)
|
|
|
|
|
n (1+ n)
|
|
|
|
|
next (+ from (* n inc)))))
|
2003-04-05 02:13:44 +00:00
|
|
|
|
(nreverse seq))))
|
2003-04-03 02:43:11 +00:00
|
|
|
|
|
2002-06-08 20:48:15 +00:00
|
|
|
|
(defun copy-tree (tree &optional vecp)
|
|
|
|
|
"Make a copy of TREE.
|
|
|
|
|
If TREE is a cons cell, this recursively copies both its car and its cdr.
|
2002-06-10 09:01:08 +00:00
|
|
|
|
Contrast to `copy-sequence', which copies only along the cdrs. With second
|
2002-06-08 20:48:15 +00:00
|
|
|
|
argument VECP, this copies vectors as well as conses."
|
|
|
|
|
(if (consp tree)
|
2002-06-10 09:01:08 +00:00
|
|
|
|
(let (result)
|
|
|
|
|
(while (consp tree)
|
|
|
|
|
(let ((newcar (car tree)))
|
|
|
|
|
(if (or (consp (car tree)) (and vecp (vectorp (car tree))))
|
|
|
|
|
(setq newcar (copy-tree (car tree) vecp)))
|
|
|
|
|
(push newcar result))
|
|
|
|
|
(setq tree (cdr tree)))
|
2002-06-14 05:49:03 +00:00
|
|
|
|
(nconc (nreverse result) tree))
|
2002-06-08 20:48:15 +00:00
|
|
|
|
(if (and vecp (vectorp tree))
|
|
|
|
|
(let ((i (length (setq tree (copy-sequence tree)))))
|
|
|
|
|
(while (>= (setq i (1- i)) 0)
|
2002-06-10 09:01:08 +00:00
|
|
|
|
(aset tree i (copy-tree (aref tree i) vecp)))
|
|
|
|
|
tree)
|
|
|
|
|
tree)))
|
2005-10-22 15:01:08 +00:00
|
|
|
|
|
|
|
|
|
;;;; Various list-search functions.
|
2002-06-08 20:48:15 +00:00
|
|
|
|
|
1998-08-08 23:07:06 +00:00
|
|
|
|
(defun assoc-default (key alist &optional test default)
|
|
|
|
|
"Find object KEY in a pseudo-alist ALIST.
|
2009-04-29 04:46:15 +00:00
|
|
|
|
ALIST is a list of conses or objects. Each element
|
|
|
|
|
(or the element's car, if it is a cons) is compared with KEY by
|
|
|
|
|
calling TEST, with two arguments: (i) the element or its car,
|
|
|
|
|
and (ii) KEY.
|
|
|
|
|
If that is non-nil, the element matches; then `assoc-default'
|
|
|
|
|
returns the element's cdr, if it is a cons, or DEFAULT if the
|
|
|
|
|
element is not a cons.
|
1998-08-08 23:07:06 +00:00
|
|
|
|
|
|
|
|
|
If no element matches, the value is nil.
|
|
|
|
|
If TEST is omitted or nil, `equal' is used."
|
|
|
|
|
(let (found (tail alist) value)
|
|
|
|
|
(while (and tail (not found))
|
|
|
|
|
(let ((elt (car tail)))
|
|
|
|
|
(when (funcall (or test 'equal) (if (consp elt) (car elt) elt) key)
|
|
|
|
|
(setq found t value (if (consp elt) (cdr elt) default))))
|
|
|
|
|
(setq tail (cdr tail)))
|
|
|
|
|
value))
|
1999-08-16 21:04:49 +00:00
|
|
|
|
|
2008-04-10 11:07:37 +00:00
|
|
|
|
(make-obsolete 'assoc-ignore-case 'assoc-string "22.1")
|
1999-08-16 21:04:49 +00:00
|
|
|
|
(defun assoc-ignore-case (key alist)
|
|
|
|
|
"Like `assoc', but ignores differences in case and text representation.
|
|
|
|
|
KEY must be a string. Upper-case and lower-case letters are treated as equal.
|
|
|
|
|
Unibyte strings are converted to multibyte for comparison."
|
2004-04-16 12:51:06 +00:00
|
|
|
|
(assoc-string key alist t))
|
1999-08-16 21:04:49 +00:00
|
|
|
|
|
2008-04-10 11:07:37 +00:00
|
|
|
|
(make-obsolete 'assoc-ignore-representation 'assoc-string "22.1")
|
1999-08-16 21:04:49 +00:00
|
|
|
|
(defun assoc-ignore-representation (key alist)
|
|
|
|
|
"Like `assoc', but ignores differences in text representation.
|
2002-10-17 15:42:10 +00:00
|
|
|
|
KEY must be a string.
|
1999-08-16 21:04:49 +00:00
|
|
|
|
Unibyte strings are converted to multibyte for comparison."
|
2004-04-16 12:51:06 +00:00
|
|
|
|
(assoc-string key alist nil))
|
2000-04-03 19:29:56 +00:00
|
|
|
|
|
|
|
|
|
(defun member-ignore-case (elt list)
|
|
|
|
|
"Like `member', but ignores differences in case and text representation.
|
|
|
|
|
ELT must be a string. Upper-case and lower-case letters are treated as equal.
|
2002-04-27 19:49:18 +00:00
|
|
|
|
Unibyte strings are converted to multibyte for comparison.
|
|
|
|
|
Non-strings in LIST are ignored."
|
|
|
|
|
(while (and list
|
|
|
|
|
(not (and (stringp (car list))
|
|
|
|
|
(eq t (compare-strings elt 0 nil (car list) 0 nil t)))))
|
2000-11-29 04:36:30 +00:00
|
|
|
|
(setq list (cdr list)))
|
|
|
|
|
list)
|
2000-04-03 19:29:56 +00:00
|
|
|
|
|
2005-10-22 15:01:08 +00:00
|
|
|
|
(defun assq-delete-all (key alist)
|
|
|
|
|
"Delete from ALIST all elements whose car is `eq' to KEY.
|
|
|
|
|
Return the modified alist.
|
|
|
|
|
Elements of ALIST that are not conses are ignored."
|
|
|
|
|
(while (and (consp (car alist))
|
|
|
|
|
(eq (car (car alist)) key))
|
|
|
|
|
(setq alist (cdr alist)))
|
|
|
|
|
(let ((tail alist) tail-cdr)
|
|
|
|
|
(while (setq tail-cdr (cdr tail))
|
|
|
|
|
(if (and (consp (car tail-cdr))
|
|
|
|
|
(eq (car (car tail-cdr)) key))
|
|
|
|
|
(setcdr tail (cdr tail-cdr))
|
|
|
|
|
(setq tail tail-cdr))))
|
|
|
|
|
alist)
|
|
|
|
|
|
|
|
|
|
(defun rassq-delete-all (value alist)
|
|
|
|
|
"Delete from ALIST all elements whose cdr is `eq' to VALUE.
|
|
|
|
|
Return the modified alist.
|
|
|
|
|
Elements of ALIST that are not conses are ignored."
|
|
|
|
|
(while (and (consp (car alist))
|
|
|
|
|
(eq (cdr (car alist)) value))
|
|
|
|
|
(setq alist (cdr alist)))
|
|
|
|
|
(let ((tail alist) tail-cdr)
|
|
|
|
|
(while (setq tail-cdr (cdr tail))
|
|
|
|
|
(if (and (consp (car tail-cdr))
|
|
|
|
|
(eq (cdr (car tail-cdr)) value))
|
|
|
|
|
(setcdr tail (cdr tail-cdr))
|
|
|
|
|
(setq tail tail-cdr))))
|
|
|
|
|
alist)
|
|
|
|
|
|
|
|
|
|
(defun remove (elt seq)
|
|
|
|
|
"Return a copy of SEQ with all occurrences of ELT removed.
|
|
|
|
|
SEQ must be a list, vector, or string. The comparison is done with `equal'."
|
|
|
|
|
(if (nlistp seq)
|
|
|
|
|
;; If SEQ isn't a list, there's no need to copy SEQ because
|
|
|
|
|
;; `delete' will return a new object.
|
|
|
|
|
(delete elt seq)
|
|
|
|
|
(delete elt (copy-sequence seq))))
|
|
|
|
|
|
|
|
|
|
(defun remq (elt list)
|
|
|
|
|
"Return LIST with all occurrences of ELT removed.
|
|
|
|
|
The comparison is done with `eq'. Contrary to `delq', this does not use
|
|
|
|
|
side-effects, and the argument LIST is not modified."
|
|
|
|
|
(if (memq elt list)
|
|
|
|
|
(delq elt (copy-sequence list))
|
|
|
|
|
list))
|
1993-04-10 06:21:55 +00:00
|
|
|
|
|
|
|
|
|
;;;; Keymap support.
|
1990-11-05 10:06:02 +00:00
|
|
|
|
|
2005-10-22 15:01:08 +00:00
|
|
|
|
(defmacro kbd (keys)
|
|
|
|
|
"Convert KEYS to the internal Emacs key representation.
|
|
|
|
|
KEYS should be a string constant in the format used for
|
|
|
|
|
saving keyboard macros (see `edmacro-mode')."
|
|
|
|
|
(read-kbd-macro keys))
|
|
|
|
|
|
1990-11-05 10:06:02 +00:00
|
|
|
|
(defun undefined ()
|
|
|
|
|
(interactive)
|
|
|
|
|
(ding))
|
|
|
|
|
|
2005-10-22 15:01:08 +00:00
|
|
|
|
;; Prevent the \{...} documentation construct
|
|
|
|
|
;; from mentioning keys that run this command.
|
1990-11-05 10:06:02 +00:00
|
|
|
|
(put 'undefined 'suppress-keymap t)
|
|
|
|
|
|
|
|
|
|
(defun suppress-keymap (map &optional nodigits)
|
|
|
|
|
"Make MAP override all normally self-inserting keys to be undefined.
|
|
|
|
|
Normally, as an exception, digits and minus-sign are set to make prefix args,
|
|
|
|
|
but optional second arg NODIGITS non-nil treats them like other chars."
|
2002-08-26 12:38:59 +00:00
|
|
|
|
(define-key map [remap self-insert-command] 'undefined)
|
1990-11-05 10:06:02 +00:00
|
|
|
|
(or nodigits
|
|
|
|
|
(let (loop)
|
|
|
|
|
(define-key map "-" 'negative-argument)
|
|
|
|
|
;; Make plain numbers do numeric args.
|
|
|
|
|
(setq loop ?0)
|
|
|
|
|
(while (<= loop ?9)
|
|
|
|
|
(define-key map (char-to-string loop) 'digit-argument)
|
|
|
|
|
(setq loop (1+ loop))))))
|
|
|
|
|
|
2000-02-23 11:40:06 +00:00
|
|
|
|
(defun define-key-after (keymap key definition &optional after)
|
1993-06-26 04:18:37 +00:00
|
|
|
|
"Add binding in KEYMAP for KEY => DEFINITION, right after AFTER's binding.
|
|
|
|
|
This is like `define-key' except that the binding for KEY is placed
|
|
|
|
|
just after the binding for the event AFTER, instead of at the beginning
|
1996-11-10 05:02:38 +00:00
|
|
|
|
of the map. Note that AFTER must be an event type (like KEY), NOT a command
|
|
|
|
|
\(like DEFINITION).
|
|
|
|
|
|
2000-02-23 11:40:06 +00:00
|
|
|
|
If AFTER is t or omitted, the new binding goes at the end of the keymap.
|
2001-10-05 09:26:17 +00:00
|
|
|
|
AFTER should be a single event type--a symbol or a character, not a sequence.
|
1996-11-10 05:02:38 +00:00
|
|
|
|
|
2000-02-23 11:40:06 +00:00
|
|
|
|
Bindings are always added before any inherited map.
|
1996-11-10 05:02:38 +00:00
|
|
|
|
|
2000-02-23 11:40:06 +00:00
|
|
|
|
The order of bindings in a keymap matters when it is used as a menu."
|
|
|
|
|
(unless after (setq after t))
|
1993-06-26 04:18:37 +00:00
|
|
|
|
(or (keymapp keymap)
|
|
|
|
|
(signal 'wrong-type-argument (list 'keymapp keymap)))
|
2001-10-05 09:26:17 +00:00
|
|
|
|
(setq key
|
|
|
|
|
(if (<= (length key) 1) (aref key 0)
|
|
|
|
|
(setq keymap (lookup-key keymap
|
|
|
|
|
(apply 'vector
|
|
|
|
|
(butlast (mapcar 'identity key)))))
|
|
|
|
|
(aref key (1- (length key)))))
|
|
|
|
|
(let ((tail keymap) done inserted)
|
1993-06-26 04:18:37 +00:00
|
|
|
|
(while (and (not done) tail)
|
|
|
|
|
;; Delete any earlier bindings for the same key.
|
2001-10-05 09:26:17 +00:00
|
|
|
|
(if (eq (car-safe (car (cdr tail))) key)
|
1993-06-26 04:18:37 +00:00
|
|
|
|
(setcdr tail (cdr (cdr tail))))
|
2001-10-05 09:26:17 +00:00
|
|
|
|
;; If we hit an included map, go down that one.
|
|
|
|
|
(if (keymapp (car tail)) (setq tail (car tail)))
|
1993-06-26 04:18:37 +00:00
|
|
|
|
;; When we reach AFTER's binding, insert the new binding after.
|
|
|
|
|
;; If we reach an inherited keymap, insert just before that.
|
1993-06-30 04:36:37 +00:00
|
|
|
|
;; If we reach the end of this keymap, insert at the end.
|
1996-11-10 05:02:38 +00:00
|
|
|
|
(if (or (and (eq (car-safe (car tail)) after)
|
|
|
|
|
(not (eq after t)))
|
1993-06-30 04:36:37 +00:00
|
|
|
|
(eq (car (cdr tail)) 'keymap)
|
|
|
|
|
(null (cdr tail)))
|
1993-06-26 04:18:37 +00:00
|
|
|
|
(progn
|
1993-06-30 04:36:37 +00:00
|
|
|
|
;; Stop the scan only if we find a parent keymap.
|
|
|
|
|
;; Keep going past the inserted element
|
|
|
|
|
;; so we can delete any duplications that come later.
|
|
|
|
|
(if (eq (car (cdr tail)) 'keymap)
|
|
|
|
|
(setq done t))
|
|
|
|
|
;; Don't insert more than once.
|
|
|
|
|
(or inserted
|
2001-10-05 09:26:17 +00:00
|
|
|
|
(setcdr tail (cons (cons key definition) (cdr tail))))
|
1993-06-30 04:36:37 +00:00
|
|
|
|
(setq inserted t)))
|
1993-06-26 04:18:37 +00:00
|
|
|
|
(setq tail (cdr tail)))))
|
|
|
|
|
|
2008-03-25 19:42:34 +00:00
|
|
|
|
(defun map-keymap-sorted (function keymap)
|
2004-11-16 17:05:18 +00:00
|
|
|
|
"Implement `map-keymap' with sorting.
|
|
|
|
|
Don't call this function; it is for internal use only."
|
2008-03-25 19:42:34 +00:00
|
|
|
|
(let (list)
|
|
|
|
|
(map-keymap (lambda (a b) (push (cons a b) list))
|
|
|
|
|
keymap)
|
|
|
|
|
(setq list (sort list
|
|
|
|
|
(lambda (a b)
|
|
|
|
|
(setq a (car a) b (car b))
|
|
|
|
|
(if (integerp a)
|
|
|
|
|
(if (integerp b) (< a b)
|
|
|
|
|
t)
|
|
|
|
|
(if (integerp b) t
|
|
|
|
|
;; string< also accepts symbols.
|
|
|
|
|
(string< a b))))))
|
|
|
|
|
(dolist (p list)
|
|
|
|
|
(funcall function (car p) (cdr p)))))
|
2002-03-29 23:13:26 +00:00
|
|
|
|
|
2008-04-04 17:31:20 +00:00
|
|
|
|
(defun keymap-canonicalize (map)
|
|
|
|
|
"Return an equivalent keymap, without inheritance."
|
|
|
|
|
(let ((bindings ())
|
2008-12-26 16:49:30 +00:00
|
|
|
|
(ranges ())
|
|
|
|
|
(prompt (keymap-prompt map)))
|
2008-04-04 17:31:20 +00:00
|
|
|
|
(while (keymapp map)
|
|
|
|
|
(setq map (map-keymap-internal
|
|
|
|
|
(lambda (key item)
|
|
|
|
|
(if (consp key)
|
|
|
|
|
;; Treat char-ranges specially.
|
|
|
|
|
(push (cons key item) ranges)
|
|
|
|
|
(push (cons key item) bindings)))
|
|
|
|
|
map)))
|
2008-12-26 16:49:30 +00:00
|
|
|
|
(setq map (funcall (if ranges 'make-keymap 'make-sparse-keymap) prompt))
|
2008-04-04 17:31:20 +00:00
|
|
|
|
(dolist (binding ranges)
|
|
|
|
|
;; Treat char-ranges specially.
|
2008-04-05 20:00:23 +00:00
|
|
|
|
(define-key map (vector (car binding)) (cdr binding)))
|
2008-04-04 17:31:20 +00:00
|
|
|
|
(dolist (binding (prog1 bindings (setq bindings ())))
|
|
|
|
|
(let* ((key (car binding))
|
|
|
|
|
(item (cdr binding))
|
|
|
|
|
(oldbind (assq key bindings)))
|
|
|
|
|
;; Newer bindings override older.
|
|
|
|
|
(if oldbind (setq bindings (delq oldbind bindings)))
|
|
|
|
|
(when item ;nil bindings just hide older ones.
|
|
|
|
|
(push binding bindings))))
|
|
|
|
|
(nconc map bindings)))
|
|
|
|
|
|
1996-08-21 20:36:30 +00:00
|
|
|
|
(put 'keyboard-translate-table 'char-table-extra-slots 0)
|
|
|
|
|
|
1993-04-10 06:21:55 +00:00
|
|
|
|
(defun keyboard-translate (from to)
|
|
|
|
|
"Translate character FROM to TO at a low level.
|
|
|
|
|
This function creates a `keyboard-translate-table' if necessary
|
|
|
|
|
and then modifies one entry in it."
|
1996-08-21 20:36:30 +00:00
|
|
|
|
(or (char-table-p keyboard-translate-table)
|
|
|
|
|
(setq keyboard-translate-table
|
|
|
|
|
(make-char-table 'keyboard-translate-table nil)))
|
1993-04-10 06:21:55 +00:00
|
|
|
|
(aset keyboard-translate-table from to))
|
|
|
|
|
|
2005-10-22 15:01:08 +00:00
|
|
|
|
;;;; Key binding commands.
|
1993-04-10 06:21:55 +00:00
|
|
|
|
|
2005-10-22 15:01:08 +00:00
|
|
|
|
(defun global-set-key (key command)
|
|
|
|
|
"Give KEY a global binding as COMMAND.
|
|
|
|
|
COMMAND is the command definition to use; usually it is
|
|
|
|
|
a symbol naming an interactively-callable function.
|
|
|
|
|
KEY is a key sequence; noninteractively, it is a string or vector
|
|
|
|
|
of characters or event types, and non-ASCII characters with codes
|
|
|
|
|
above 127 (such as ISO Latin-1) can be included if you use a vector.
|
1993-04-10 06:21:55 +00:00
|
|
|
|
|
2005-10-22 15:01:08 +00:00
|
|
|
|
Note that if KEY has a local binding in the current buffer,
|
|
|
|
|
that local binding will continue to shadow any global binding
|
|
|
|
|
that you make with this function."
|
|
|
|
|
(interactive "KSet key globally: \nCSet key %s to command: ")
|
|
|
|
|
(or (vectorp key) (stringp key)
|
|
|
|
|
(signal 'wrong-type-argument (list 'arrayp key)))
|
|
|
|
|
(define-key (current-global-map) key command))
|
1993-04-10 06:21:55 +00:00
|
|
|
|
|
2005-10-22 15:01:08 +00:00
|
|
|
|
(defun local-set-key (key command)
|
|
|
|
|
"Give KEY a local binding as COMMAND.
|
|
|
|
|
COMMAND is the command definition to use; usually it is
|
|
|
|
|
a symbol naming an interactively-callable function.
|
|
|
|
|
KEY is a key sequence; noninteractively, it is a string or vector
|
|
|
|
|
of characters or event types, and non-ASCII characters with codes
|
|
|
|
|
above 127 (such as ISO Latin-1) can be included if you use a vector.
|
1993-04-10 06:21:55 +00:00
|
|
|
|
|
2005-10-22 15:01:08 +00:00
|
|
|
|
The binding goes in the current buffer's local map,
|
|
|
|
|
which in most cases is shared with all other buffers in the same major mode."
|
|
|
|
|
(interactive "KSet key locally: \nCSet key %s locally to command: ")
|
|
|
|
|
(let ((map (current-local-map)))
|
|
|
|
|
(or map
|
|
|
|
|
(use-local-map (setq map (make-sparse-keymap))))
|
|
|
|
|
(or (vectorp key) (stringp key)
|
|
|
|
|
(signal 'wrong-type-argument (list 'arrayp key)))
|
|
|
|
|
(define-key map key command)))
|
1993-04-10 06:21:55 +00:00
|
|
|
|
|
2005-10-22 15:01:08 +00:00
|
|
|
|
(defun global-unset-key (key)
|
|
|
|
|
"Remove global binding of KEY.
|
|
|
|
|
KEY is a string or vector representing a sequence of keystrokes."
|
|
|
|
|
(interactive "kUnset key globally: ")
|
|
|
|
|
(global-set-key key nil))
|
1993-04-10 06:21:55 +00:00
|
|
|
|
|
2005-10-22 15:01:08 +00:00
|
|
|
|
(defun local-unset-key (key)
|
|
|
|
|
"Remove local binding of KEY.
|
|
|
|
|
KEY is a string or vector representing a sequence of keystrokes."
|
|
|
|
|
(interactive "kUnset key locally: ")
|
|
|
|
|
(if (current-local-map)
|
|
|
|
|
(local-set-key key nil))
|
|
|
|
|
nil)
|
|
|
|
|
|
|
|
|
|
;;;; substitute-key-definition and its subroutines.
|
|
|
|
|
|
|
|
|
|
(defvar key-substitution-in-progress nil
|
2007-04-09 23:10:00 +00:00
|
|
|
|
"Used internally by `substitute-key-definition'.")
|
2005-10-22 15:01:08 +00:00
|
|
|
|
|
|
|
|
|
(defun substitute-key-definition (olddef newdef keymap &optional oldmap prefix)
|
|
|
|
|
"Replace OLDDEF with NEWDEF for any keys in KEYMAP now defined as OLDDEF.
|
|
|
|
|
In other words, OLDDEF is replaced with NEWDEF where ever it appears.
|
|
|
|
|
Alternatively, if optional fourth argument OLDMAP is specified, we redefine
|
|
|
|
|
in KEYMAP as NEWDEF those keys which are defined as OLDDEF in OLDMAP.
|
|
|
|
|
|
2006-02-12 20:32:18 +00:00
|
|
|
|
If you don't specify OLDMAP, you can usually get the same results
|
|
|
|
|
in a cleaner way with command remapping, like this:
|
2006-02-13 11:05:37 +00:00
|
|
|
|
\(define-key KEYMAP [remap OLDDEF] NEWDEF)
|
|
|
|
|
\n(fn OLDDEF NEWDEF KEYMAP &optional OLDMAP)"
|
2005-10-22 15:01:08 +00:00
|
|
|
|
;; Don't document PREFIX in the doc string because we don't want to
|
|
|
|
|
;; advertise it. It's meant for recursive calls only. Here's its
|
|
|
|
|
;; meaning
|
|
|
|
|
|
|
|
|
|
;; If optional argument PREFIX is specified, it should be a key
|
|
|
|
|
;; prefix, a string. Redefined bindings will then be bound to the
|
|
|
|
|
;; original key, with PREFIX added at the front.
|
|
|
|
|
(or prefix (setq prefix ""))
|
|
|
|
|
(let* ((scan (or oldmap keymap))
|
|
|
|
|
(prefix1 (vconcat prefix [nil]))
|
|
|
|
|
(key-substitution-in-progress
|
|
|
|
|
(cons scan key-substitution-in-progress)))
|
|
|
|
|
;; Scan OLDMAP, finding each char or event-symbol that
|
|
|
|
|
;; has any definition, and act on it with hack-key.
|
|
|
|
|
(map-keymap
|
|
|
|
|
(lambda (char defn)
|
|
|
|
|
(aset prefix1 (length prefix) char)
|
|
|
|
|
(substitute-key-definition-key defn olddef newdef prefix1 keymap))
|
|
|
|
|
scan)))
|
|
|
|
|
|
|
|
|
|
(defun substitute-key-definition-key (defn olddef newdef prefix keymap)
|
|
|
|
|
(let (inner-def skipped menu-item)
|
|
|
|
|
;; Find the actual command name within the binding.
|
|
|
|
|
(if (eq (car-safe defn) 'menu-item)
|
|
|
|
|
(setq menu-item defn defn (nth 2 defn))
|
|
|
|
|
;; Skip past menu-prompt.
|
|
|
|
|
(while (stringp (car-safe defn))
|
|
|
|
|
(push (pop defn) skipped))
|
|
|
|
|
;; Skip past cached key-equivalence data for menu items.
|
|
|
|
|
(if (consp (car-safe defn))
|
|
|
|
|
(setq defn (cdr defn))))
|
|
|
|
|
(if (or (eq defn olddef)
|
|
|
|
|
;; Compare with equal if definition is a key sequence.
|
|
|
|
|
;; That is useful for operating on function-key-map.
|
|
|
|
|
(and (or (stringp defn) (vectorp defn))
|
|
|
|
|
(equal defn olddef)))
|
|
|
|
|
(define-key keymap prefix
|
|
|
|
|
(if menu-item
|
|
|
|
|
(let ((copy (copy-sequence menu-item)))
|
|
|
|
|
(setcar (nthcdr 2 copy) newdef)
|
|
|
|
|
copy)
|
|
|
|
|
(nconc (nreverse skipped) newdef)))
|
|
|
|
|
;; Look past a symbol that names a keymap.
|
|
|
|
|
(setq inner-def
|
2006-02-10 00:02:47 +00:00
|
|
|
|
(or (indirect-function defn t) defn))
|
2005-10-22 15:01:08 +00:00
|
|
|
|
;; For nested keymaps, we use `inner-def' rather than `defn' so as to
|
|
|
|
|
;; avoid autoloading a keymap. This is mostly done to preserve the
|
|
|
|
|
;; original non-autoloading behavior of pre-map-keymap times.
|
|
|
|
|
(if (and (keymapp inner-def)
|
|
|
|
|
;; Avoid recursively scanning
|
|
|
|
|
;; where KEYMAP does not have a submap.
|
|
|
|
|
(let ((elt (lookup-key keymap prefix)))
|
|
|
|
|
(or (null elt) (natnump elt) (keymapp elt)))
|
|
|
|
|
;; Avoid recursively rescanning keymap being scanned.
|
|
|
|
|
(not (memq inner-def key-substitution-in-progress)))
|
|
|
|
|
;; If this one isn't being scanned already, scan it now.
|
|
|
|
|
(substitute-key-definition olddef newdef keymap inner-def prefix)))))
|
1993-04-10 06:21:55 +00:00
|
|
|
|
|
|
|
|
|
|
2002-10-17 15:42:10 +00:00
|
|
|
|
;;;; The global keymap tree.
|
1993-04-10 06:21:55 +00:00
|
|
|
|
|
2009-09-17 15:58:35 +00:00
|
|
|
|
;; global-map, esc-map, and ctl-x-map have their values set up in
|
|
|
|
|
;; keymap.c; we just give them docstrings here.
|
1993-04-10 06:21:55 +00:00
|
|
|
|
|
|
|
|
|
(defvar global-map nil
|
|
|
|
|
"Default global keymap mapping Emacs keyboard input into commands.
|
|
|
|
|
The value is a keymap which is usually (but not necessarily) Emacs's
|
|
|
|
|
global map.")
|
|
|
|
|
|
|
|
|
|
(defvar esc-map nil
|
|
|
|
|
"Default keymap for ESC (meta) commands.
|
|
|
|
|
The normal global definition of the character ESC indirects to this keymap.")
|
|
|
|
|
|
|
|
|
|
(defvar ctl-x-map nil
|
|
|
|
|
"Default keymap for C-x commands.
|
|
|
|
|
The normal global definition of the character C-x indirects to this keymap.")
|
|
|
|
|
|
|
|
|
|
(defvar ctl-x-4-map (make-sparse-keymap)
|
2001-12-11 07:34:39 +00:00
|
|
|
|
"Keymap for subcommands of C-x 4.")
|
1993-04-23 06:50:48 +00:00
|
|
|
|
(defalias 'ctl-x-4-prefix ctl-x-4-map)
|
1993-04-10 06:21:55 +00:00
|
|
|
|
(define-key ctl-x-map "4" 'ctl-x-4-prefix)
|
|
|
|
|
|
|
|
|
|
(defvar ctl-x-5-map (make-sparse-keymap)
|
|
|
|
|
"Keymap for frame commands.")
|
1993-04-23 06:50:48 +00:00
|
|
|
|
(defalias 'ctl-x-5-prefix ctl-x-5-map)
|
1993-04-10 06:21:55 +00:00
|
|
|
|
(define-key ctl-x-map "5" 'ctl-x-5-prefix)
|
|
|
|
|
|
1993-03-08 08:10:13 +00:00
|
|
|
|
|
1993-04-10 06:21:55 +00:00
|
|
|
|
;;;; Event manipulation functions.
|
|
|
|
|
|
2009-08-19 03:03:05 +00:00
|
|
|
|
(defconst listify-key-sequence-1 (logior 128 ?\M-\C-@))
|
1993-05-27 00:06:08 +00:00
|
|
|
|
|
1993-03-06 05:54:29 +00:00
|
|
|
|
(defun listify-key-sequence (key)
|
|
|
|
|
"Convert a key sequence to a list of events."
|
|
|
|
|
(if (vectorp key)
|
|
|
|
|
(append key nil)
|
|
|
|
|
(mapcar (function (lambda (c)
|
|
|
|
|
(if (> c 127)
|
1993-05-27 00:06:08 +00:00
|
|
|
|
(logxor c listify-key-sequence-1)
|
1993-03-06 05:54:29 +00:00
|
|
|
|
c)))
|
2003-05-17 22:00:40 +00:00
|
|
|
|
key)))
|
1993-03-06 05:54:29 +00:00
|
|
|
|
|
1993-03-07 07:35:57 +00:00
|
|
|
|
(defsubst eventp (obj)
|
|
|
|
|
"True if the argument is an event object."
|
2004-05-11 03:17:45 +00:00
|
|
|
|
(or (and (integerp obj)
|
|
|
|
|
;; Filter out integers too large to be events.
|
|
|
|
|
;; M is the biggest modifier.
|
|
|
|
|
(zerop (logand obj (lognot (1- (lsh ?\M-\^@ 1)))))
|
2004-06-28 07:56:49 +00:00
|
|
|
|
(characterp (event-basic-type obj)))
|
1993-03-07 07:35:57 +00:00
|
|
|
|
(and (symbolp obj)
|
|
|
|
|
(get obj 'event-symbol-elements))
|
|
|
|
|
(and (consp obj)
|
|
|
|
|
(symbolp (car obj))
|
|
|
|
|
(get (car obj) 'event-symbol-elements))))
|
|
|
|
|
|
|
|
|
|
(defun event-modifiers (event)
|
2004-07-25 05:45:53 +00:00
|
|
|
|
"Return a list of symbols representing the modifier keys in event EVENT.
|
1993-03-07 07:35:57 +00:00
|
|
|
|
The elements of the list may include `meta', `control',
|
1993-08-02 07:23:07 +00:00
|
|
|
|
`shift', `hyper', `super', `alt', `click', `double', `triple', `drag',
|
2004-07-31 15:45:30 +00:00
|
|
|
|
and `down'.
|
|
|
|
|
EVENT may be an event or an event type. If EVENT is a symbol
|
|
|
|
|
that has never been used in an event that has been read as input
|
|
|
|
|
in the current Emacs session, then this function can return nil,
|
|
|
|
|
even when EVENT actually has modifiers."
|
1993-03-07 07:35:57 +00:00
|
|
|
|
(let ((type event))
|
|
|
|
|
(if (listp type)
|
|
|
|
|
(setq type (car type)))
|
|
|
|
|
(if (symbolp type)
|
2007-11-15 16:03:00 +00:00
|
|
|
|
;; Don't read event-symbol-elements directly since we're not
|
|
|
|
|
;; sure the symbol has already been parsed.
|
|
|
|
|
(cdr (internal-event-symbol-parse-modifiers type))
|
2004-04-20 20:56:32 +00:00
|
|
|
|
(let ((list nil)
|
|
|
|
|
(char (logand type (lognot (logior ?\M-\^@ ?\C-\^@ ?\S-\^@
|
|
|
|
|
?\H-\^@ ?\s-\^@ ?\A-\^@)))))
|
|
|
|
|
(if (not (zerop (logand type ?\M-\^@)))
|
2004-10-13 17:05:55 +00:00
|
|
|
|
(push 'meta list))
|
2004-04-20 20:56:32 +00:00
|
|
|
|
(if (or (not (zerop (logand type ?\C-\^@)))
|
|
|
|
|
(< char 32))
|
2004-10-13 17:05:55 +00:00
|
|
|
|
(push 'control list))
|
2004-04-20 20:56:32 +00:00
|
|
|
|
(if (or (not (zerop (logand type ?\S-\^@)))
|
|
|
|
|
(/= char (downcase char)))
|
2004-10-13 17:05:55 +00:00
|
|
|
|
(push 'shift list))
|
1995-02-08 03:51:58 +00:00
|
|
|
|
(or (zerop (logand type ?\H-\^@))
|
2004-10-13 17:05:55 +00:00
|
|
|
|
(push 'hyper list))
|
1995-02-08 03:51:58 +00:00
|
|
|
|
(or (zerop (logand type ?\s-\^@))
|
2004-10-13 17:05:55 +00:00
|
|
|
|
(push 'super list))
|
1995-02-08 03:51:58 +00:00
|
|
|
|
(or (zerop (logand type ?\A-\^@))
|
2004-10-13 17:05:55 +00:00
|
|
|
|
(push 'alt list))
|
1993-03-07 07:35:57 +00:00
|
|
|
|
list))))
|
|
|
|
|
|
1993-03-08 00:07:53 +00:00
|
|
|
|
(defun event-basic-type (event)
|
2004-07-25 05:45:53 +00:00
|
|
|
|
"Return the basic type of the given event (all modifiers removed).
|
2004-07-31 15:45:30 +00:00
|
|
|
|
The value is a printing character (not upper case) or a symbol.
|
|
|
|
|
EVENT may be an event or an event type. If EVENT is a symbol
|
|
|
|
|
that has never been used in an event that has been read as input
|
|
|
|
|
in the current Emacs session, then this function may return nil."
|
1993-06-17 00:16:29 +00:00
|
|
|
|
(if (consp event)
|
|
|
|
|
(setq event (car event)))
|
1993-03-08 00:07:53 +00:00
|
|
|
|
(if (symbolp event)
|
|
|
|
|
(car (get event 'event-symbol-elements))
|
2005-05-19 15:43:48 +00:00
|
|
|
|
(let* ((base (logand event (1- ?\A-\^@)))
|
|
|
|
|
(uncontrolled (if (< base 32) (logior base 64) base)))
|
|
|
|
|
;; There are some numbers that are invalid characters and
|
|
|
|
|
;; cause `downcase' to get an error.
|
|
|
|
|
(condition-case ()
|
|
|
|
|
(downcase uncontrolled)
|
|
|
|
|
(error uncontrolled)))))
|
1993-03-08 00:07:53 +00:00
|
|
|
|
|
1993-03-08 08:10:13 +00:00
|
|
|
|
(defsubst mouse-movement-p (object)
|
|
|
|
|
"Return non-nil if OBJECT is a mouse movement event."
|
2004-10-13 17:05:55 +00:00
|
|
|
|
(eq (car-safe object) 'mouse-movement))
|
1993-03-08 08:10:13 +00:00
|
|
|
|
|
2008-05-02 14:37:39 +00:00
|
|
|
|
(defun mouse-event-p (object)
|
|
|
|
|
"Return non-nil if OBJECT is a mouse click event."
|
|
|
|
|
;; is this really correct? maybe remove mouse-movement?
|
|
|
|
|
(memq (event-basic-type object) '(mouse-1 mouse-2 mouse-3 mouse-movement)))
|
|
|
|
|
|
1993-03-08 08:10:13 +00:00
|
|
|
|
(defsubst event-start (event)
|
|
|
|
|
"Return the starting position of EVENT.
|
2004-04-16 12:51:06 +00:00
|
|
|
|
If EVENT is a mouse or key press or a mouse click, this returns the location
|
1993-03-08 08:10:13 +00:00
|
|
|
|
of the event.
|
|
|
|
|
If EVENT is a drag, this returns the drag's starting position.
|
|
|
|
|
The return value is of the form
|
2004-04-16 12:51:06 +00:00
|
|
|
|
(WINDOW AREA-OR-POS (X . Y) TIMESTAMP OBJECT POS (COL . ROW)
|
|
|
|
|
IMAGE (DX . DY) (WIDTH . HEIGHT))
|
1993-03-08 08:10:13 +00:00
|
|
|
|
The `posn-' functions access elements of such lists."
|
2002-06-23 22:13:15 +00:00
|
|
|
|
(if (consp event) (nth 1 event)
|
|
|
|
|
(list (selected-window) (point) '(0 . 0) 0)))
|
1993-03-08 08:10:13 +00:00
|
|
|
|
|
|
|
|
|
(defsubst event-end (event)
|
2004-04-16 12:51:06 +00:00
|
|
|
|
"Return the ending location of EVENT.
|
|
|
|
|
EVENT should be a click, drag, or key press event.
|
1993-03-08 08:10:13 +00:00
|
|
|
|
If EVENT is a click event, this function is the same as `event-start'.
|
|
|
|
|
The return value is of the form
|
2004-04-16 12:51:06 +00:00
|
|
|
|
(WINDOW AREA-OR-POS (X . Y) TIMESTAMP OBJECT POS (COL . ROW)
|
|
|
|
|
IMAGE (DX . DY) (WIDTH . HEIGHT))
|
1993-03-08 08:10:13 +00:00
|
|
|
|
The `posn-' functions access elements of such lists."
|
2002-06-23 22:13:15 +00:00
|
|
|
|
(if (consp event) (nth (if (consp (nth 2 event)) 2 1) event)
|
|
|
|
|
(list (selected-window) (point) '(0 . 0) 0)))
|
1993-03-08 08:10:13 +00:00
|
|
|
|
|
1993-08-02 07:23:07 +00:00
|
|
|
|
(defsubst event-click-count (event)
|
|
|
|
|
"Return the multi-click count of EVENT, a click or drag event.
|
|
|
|
|
The return value is a positive integer."
|
2002-06-23 22:13:15 +00:00
|
|
|
|
(if (and (consp event) (integerp (nth 2 event))) (nth 2 event) 1))
|
2005-10-22 15:01:08 +00:00
|
|
|
|
|
|
|
|
|
;;;; Extracting fields of the positions in an event.
|
1993-08-02 07:23:07 +00:00
|
|
|
|
|
1993-03-08 08:10:13 +00:00
|
|
|
|
(defsubst posn-window (position)
|
|
|
|
|
"Return the window in POSITION.
|
2004-04-16 12:51:06 +00:00
|
|
|
|
POSITION should be a list of the form returned by the `event-start'
|
|
|
|
|
and `event-end' functions."
|
1993-03-08 08:10:13 +00:00
|
|
|
|
(nth 0 position))
|
|
|
|
|
|
2004-04-16 12:51:06 +00:00
|
|
|
|
(defsubst posn-area (position)
|
|
|
|
|
"Return the window area recorded in POSITION, or nil for the text area.
|
|
|
|
|
POSITION should be a list of the form returned by the `event-start'
|
|
|
|
|
and `event-end' functions."
|
|
|
|
|
(let ((area (if (consp (nth 1 position))
|
|
|
|
|
(car (nth 1 position))
|
|
|
|
|
(nth 1 position))))
|
|
|
|
|
(and (symbolp area) area)))
|
|
|
|
|
|
1993-03-08 08:10:13 +00:00
|
|
|
|
(defsubst posn-point (position)
|
|
|
|
|
"Return the buffer location in POSITION.
|
2004-04-16 12:51:06 +00:00
|
|
|
|
POSITION should be a list of the form returned by the `event-start'
|
|
|
|
|
and `event-end' functions."
|
|
|
|
|
(or (nth 5 position)
|
|
|
|
|
(if (consp (nth 1 position))
|
|
|
|
|
(car (nth 1 position))
|
|
|
|
|
(nth 1 position))))
|
|
|
|
|
|
|
|
|
|
(defun posn-set-point (position)
|
|
|
|
|
"Move point to POSITION.
|
|
|
|
|
Select the corresponding window as well."
|
2007-04-09 23:10:00 +00:00
|
|
|
|
(if (not (windowp (posn-window position)))
|
|
|
|
|
(error "Position not in text area of window"))
|
|
|
|
|
(select-window (posn-window position))
|
|
|
|
|
(if (numberp (posn-point position))
|
|
|
|
|
(goto-char (posn-point position))))
|
1993-03-08 08:10:13 +00:00
|
|
|
|
|
1994-02-23 05:08:28 +00:00
|
|
|
|
(defsubst posn-x-y (position)
|
|
|
|
|
"Return the x and y coordinates in POSITION.
|
2004-04-16 12:51:06 +00:00
|
|
|
|
POSITION should be a list of the form returned by the `event-start'
|
|
|
|
|
and `event-end' functions."
|
1993-03-08 08:10:13 +00:00
|
|
|
|
(nth 2 position))
|
|
|
|
|
|
2008-06-12 03:56:20 +00:00
|
|
|
|
(declare-function scroll-bar-scale "scroll-bar" (num-denom whole))
|
|
|
|
|
|
1994-05-22 20:55:15 +00:00
|
|
|
|
(defun posn-col-row (position)
|
2004-04-16 12:51:06 +00:00
|
|
|
|
"Return the nominal column and row in POSITION, measured in characters.
|
|
|
|
|
The column and row values are approximations calculated from the x
|
|
|
|
|
and y coordinates in POSITION and the frame's default character width
|
|
|
|
|
and height.
|
1994-05-22 20:55:15 +00:00
|
|
|
|
For a scroll-bar event, the result column is 0, and the row
|
2004-04-16 12:51:06 +00:00
|
|
|
|
corresponds to the vertical position of the click in the scroll bar.
|
|
|
|
|
POSITION should be a list of the form returned by the `event-start'
|
|
|
|
|
and `event-end' functions."
|
|
|
|
|
(let* ((pair (posn-x-y position))
|
|
|
|
|
(window (posn-window position))
|
|
|
|
|
(area (posn-area position)))
|
|
|
|
|
(cond
|
|
|
|
|
((null window)
|
|
|
|
|
'(0 . 0))
|
|
|
|
|
((eq area 'vertical-scroll-bar)
|
|
|
|
|
(cons 0 (scroll-bar-scale pair (1- (window-height window)))))
|
|
|
|
|
((eq area 'horizontal-scroll-bar)
|
|
|
|
|
(cons (scroll-bar-scale pair (window-width window)) 0))
|
|
|
|
|
(t
|
|
|
|
|
(let* ((frame (if (framep window) window (window-frame window)))
|
2009-04-15 22:41:20 +00:00
|
|
|
|
;; FIXME: This should take line-spacing properties on
|
|
|
|
|
;; newlines into account.
|
|
|
|
|
(spacing (when (display-graphic-p frame)
|
|
|
|
|
(or (with-current-buffer (window-buffer window)
|
|
|
|
|
line-spacing)
|
|
|
|
|
(frame-parameter frame 'line-spacing)))))
|
|
|
|
|
(cond ((floatp spacing)
|
|
|
|
|
(setq spacing (truncate (* spacing
|
|
|
|
|
(frame-char-height frame)))))
|
|
|
|
|
((null spacing)
|
|
|
|
|
(setq spacing 0)))
|
|
|
|
|
(cons (/ (car pair) (frame-char-width frame))
|
2010-11-13 21:07:58 +00:00
|
|
|
|
(- (/ (cdr pair) (+ (frame-char-height frame) spacing))
|
|
|
|
|
(if (null header-line-format) 0 1))))))))
|
2004-04-16 12:51:06 +00:00
|
|
|
|
|
|
|
|
|
(defun posn-actual-col-row (position)
|
|
|
|
|
"Return the actual column and row in POSITION, measured in characters.
|
|
|
|
|
These are the actual row number in the window and character number in that row.
|
|
|
|
|
Return nil if POSITION does not contain the actual position; in that case
|
|
|
|
|
`posn-col-row' can be used to get approximate values.
|
|
|
|
|
POSITION should be a list of the form returned by the `event-start'
|
|
|
|
|
and `event-end' functions."
|
|
|
|
|
(nth 6 position))
|
1994-02-23 05:08:28 +00:00
|
|
|
|
|
1993-03-08 08:10:13 +00:00
|
|
|
|
(defsubst posn-timestamp (position)
|
|
|
|
|
"Return the timestamp of POSITION.
|
2004-04-16 12:51:06 +00:00
|
|
|
|
POSITION should be a list of the form returned by the `event-start'
|
|
|
|
|
and `event-end' functions."
|
1993-03-08 08:10:13 +00:00
|
|
|
|
(nth 3 position))
|
1993-04-10 06:21:55 +00:00
|
|
|
|
|
2004-04-16 12:51:06 +00:00
|
|
|
|
(defsubst posn-string (position)
|
2006-04-26 08:56:32 +00:00
|
|
|
|
"Return the string object of POSITION.
|
|
|
|
|
Value is a cons (STRING . STRING-POS), or nil if not a string.
|
2004-04-16 12:51:06 +00:00
|
|
|
|
POSITION should be a list of the form returned by the `event-start'
|
|
|
|
|
and `event-end' functions."
|
|
|
|
|
(nth 4 position))
|
|
|
|
|
|
|
|
|
|
(defsubst posn-image (position)
|
2006-04-26 08:56:32 +00:00
|
|
|
|
"Return the image object of POSITION.
|
2006-11-19 23:42:37 +00:00
|
|
|
|
Value is a list (image ...), or nil if not an image.
|
2004-04-16 12:51:06 +00:00
|
|
|
|
POSITION should be a list of the form returned by the `event-start'
|
|
|
|
|
and `event-end' functions."
|
|
|
|
|
(nth 7 position))
|
|
|
|
|
|
|
|
|
|
(defsubst posn-object (position)
|
|
|
|
|
"Return the object (image or string) of POSITION.
|
2006-04-26 08:56:32 +00:00
|
|
|
|
Value is a list (image ...) for an image object, a cons cell
|
|
|
|
|
\(STRING . STRING-POS) for a string object, and nil for a buffer position.
|
2004-04-16 12:51:06 +00:00
|
|
|
|
POSITION should be a list of the form returned by the `event-start'
|
|
|
|
|
and `event-end' functions."
|
|
|
|
|
(or (posn-image position) (posn-string position)))
|
|
|
|
|
|
|
|
|
|
(defsubst posn-object-x-y (position)
|
|
|
|
|
"Return the x and y coordinates relative to the object of POSITION.
|
|
|
|
|
POSITION should be a list of the form returned by the `event-start'
|
|
|
|
|
and `event-end' functions."
|
|
|
|
|
(nth 8 position))
|
|
|
|
|
|
|
|
|
|
(defsubst posn-object-width-height (position)
|
|
|
|
|
"Return the pixel width and height of the object of POSITION.
|
|
|
|
|
POSITION should be a list of the form returned by the `event-start'
|
|
|
|
|
and `event-end' functions."
|
|
|
|
|
(nth 9 position))
|
|
|
|
|
|
1990-11-05 10:06:02 +00:00
|
|
|
|
|
1993-04-10 06:21:55 +00:00
|
|
|
|
;;;; Obsolescent names for functions.
|
|
|
|
|
|
2009-10-01 17:47:38 +00:00
|
|
|
|
(define-obsolete-function-alias 'window-dot 'window-point "22.1")
|
|
|
|
|
(define-obsolete-function-alias 'set-window-dot 'set-window-point "22.1")
|
|
|
|
|
(define-obsolete-function-alias 'read-input 'read-string "22.1")
|
|
|
|
|
(define-obsolete-function-alias 'show-buffer 'set-window-buffer "22.1")
|
|
|
|
|
(define-obsolete-function-alias 'eval-current-buffer 'eval-buffer "22.1")
|
|
|
|
|
(define-obsolete-function-alias 'string-to-int 'string-to-number "22.1")
|
|
|
|
|
|
|
|
|
|
(make-obsolete 'char-bytes "now always returns 1." "20.4")
|
|
|
|
|
(make-obsolete 'forward-point "use (+ (point) N) instead." "23.1")
|
|
|
|
|
|
|
|
|
|
(defun insert-string (&rest args)
|
|
|
|
|
"Mocklisp-compatibility insert function.
|
|
|
|
|
Like the function `insert' except that any argument that is a number
|
|
|
|
|
is converted into a string by expressing it in decimal."
|
|
|
|
|
(dolist (el args)
|
|
|
|
|
(insert (if (integerp el) (number-to-string el) el))))
|
|
|
|
|
(make-obsolete 'insert-string 'insert "22.1")
|
|
|
|
|
|
|
|
|
|
(defun makehash (&optional test) (make-hash-table :test (or test 'eql)))
|
|
|
|
|
(make-obsolete 'makehash 'make-hash-table "22.1")
|
|
|
|
|
|
|
|
|
|
;; These are used by VM and some old programs
|
|
|
|
|
(defalias 'focus-frame 'ignore "")
|
|
|
|
|
(make-obsolete 'focus-frame "it does nothing." "22.1")
|
|
|
|
|
(defalias 'unfocus-frame 'ignore "")
|
|
|
|
|
(make-obsolete 'unfocus-frame "it does nothing." "22.1")
|
|
|
|
|
(make-obsolete 'make-variable-frame-local
|
|
|
|
|
"explicitly check for a frame-parameter instead." "22.2")
|
|
|
|
|
(make-obsolete 'interactive-p 'called-interactively-p "23.2")
|
2010-09-14 11:11:44 +00:00
|
|
|
|
(set-advertised-calling-convention 'called-interactively-p '(kind) "23.1")
|
2009-10-26 03:39:15 +00:00
|
|
|
|
(set-advertised-calling-convention
|
2010-09-14 11:11:44 +00:00
|
|
|
|
'all-completions '(string collection &optional predicate) "23.1")
|
|
|
|
|
(set-advertised-calling-convention 'unintern '(name obarray) "23.3")
|
2009-10-01 17:47:38 +00:00
|
|
|
|
|
|
|
|
|
;;;; Obsolescence declarations for variables, and aliases.
|
|
|
|
|
|
* subr.el (default-mode-line-format, default-header-line-format)
(default-line-spacing, default-abbrev-mode, default-ctl-arrow)
(default-direction-reversed, default-truncate-lines)
(default-left-margin, default-tab-width, default-case-fold-search)
(default-left-margin-width, default-right-margin-width)
(default-left-fringe-width, default-right-fringe-width)
(default-fringes-outside-margins, default-scroll-bar-width)
(default-vertical-scroll-bar, default-indicate-empty-lines)
(default-indicate-buffer-boundaries, default-fringe-indicator-alist)
(default-fringe-cursor-alist, default-scroll-up-aggressively)
(default-scroll-down-aggressively, default-fill-column)
(default-cursor-type, default-buffer-file-type)
(default-cursor-in-non-selected-windows)
(default-buffer-file-coding-system, default-major-mode)
(default-enable-multibyte-characters): Mark as obsolete.
* cus-start.el (default-major-mode): Customize `major-mode' instead.
(enable-multibyte-characters): Not customizable any more.
2009-08-27 04:24:00 +00:00
|
|
|
|
;; Special "default-FOO" variables which contain the default value of
|
|
|
|
|
;; the "FOO" variable are nasty. Their implementation is brittle, and
|
|
|
|
|
;; slows down several unrelated variable operations; furthermore, they
|
|
|
|
|
;; can lead to really odd behavior if you decide to make them
|
|
|
|
|
;; buffer-local.
|
|
|
|
|
|
|
|
|
|
;; Not used at all in Emacs, last time I checked:
|
|
|
|
|
(make-obsolete-variable 'default-mode-line-format 'mode-line-format "23.2")
|
|
|
|
|
(make-obsolete-variable 'default-header-line-format 'header-line-format "23.2")
|
|
|
|
|
(make-obsolete-variable 'default-line-spacing 'line-spacing "23.2")
|
|
|
|
|
(make-obsolete-variable 'default-abbrev-mode 'abbrev-mode "23.2")
|
|
|
|
|
(make-obsolete-variable 'default-ctl-arrow 'ctl-arrow "23.2")
|
|
|
|
|
(make-obsolete-variable 'default-direction-reversed 'direction-reversed "23.2")
|
|
|
|
|
(make-obsolete-variable 'default-truncate-lines 'truncate-lines "23.2")
|
|
|
|
|
(make-obsolete-variable 'default-left-margin 'left-margin "23.2")
|
|
|
|
|
(make-obsolete-variable 'default-tab-width 'tab-width "23.2")
|
|
|
|
|
(make-obsolete-variable 'default-case-fold-search 'case-fold-search "23.2")
|
|
|
|
|
(make-obsolete-variable 'default-left-margin-width 'left-margin-width "23.2")
|
|
|
|
|
(make-obsolete-variable 'default-right-margin-width 'right-margin-width "23.2")
|
|
|
|
|
(make-obsolete-variable 'default-left-fringe-width 'left-fringe-width "23.2")
|
|
|
|
|
(make-obsolete-variable 'default-right-fringe-width 'right-fringe-width "23.2")
|
|
|
|
|
(make-obsolete-variable 'default-fringes-outside-margins 'fringes-outside-margins "23.2")
|
|
|
|
|
(make-obsolete-variable 'default-scroll-bar-width 'scroll-bar-width "23.2")
|
|
|
|
|
(make-obsolete-variable 'default-vertical-scroll-bar 'vertical-scroll-bar "23.2")
|
|
|
|
|
(make-obsolete-variable 'default-indicate-empty-lines 'indicate-empty-lines "23.2")
|
|
|
|
|
(make-obsolete-variable 'default-indicate-buffer-boundaries 'indicate-buffer-boundaries "23.2")
|
|
|
|
|
(make-obsolete-variable 'default-fringe-indicator-alist 'fringe-indicator-alist "23.2")
|
|
|
|
|
(make-obsolete-variable 'default-fringe-cursor-alist 'fringe-cursor-alist "23.2")
|
|
|
|
|
(make-obsolete-variable 'default-scroll-up-aggressively 'scroll-up-aggressively "23.2")
|
|
|
|
|
(make-obsolete-variable 'default-scroll-down-aggressively 'scroll-down-aggressively "23.2")
|
|
|
|
|
(make-obsolete-variable 'default-fill-column 'fill-column "23.2")
|
|
|
|
|
(make-obsolete-variable 'default-cursor-type 'cursor-type "23.2")
|
|
|
|
|
(make-obsolete-variable 'default-buffer-file-type 'buffer-file-type "23.2")
|
|
|
|
|
(make-obsolete-variable 'default-cursor-in-non-selected-windows 'cursor-in-non-selected-windows "23.2")
|
|
|
|
|
(make-obsolete-variable 'default-buffer-file-coding-system 'buffer-file-coding-system "23.2")
|
|
|
|
|
(make-obsolete-variable 'default-major-mode 'major-mode "23.2")
|
|
|
|
|
(make-obsolete-variable 'default-enable-multibyte-characters
|
|
|
|
|
"use enable-multibyte-characters or set-buffer-multibyte instead" "23.2")
|
|
|
|
|
|
2009-09-10 18:19:03 +00:00
|
|
|
|
(make-obsolete-variable 'define-key-rebound-commands nil "23.2")
|
2008-03-25 17:32:20 +00:00
|
|
|
|
(make-obsolete-variable 'redisplay-end-trigger-functions 'jit-lock-register "23.1")
|
|
|
|
|
(make-obsolete 'window-redisplay-end-trigger nil "23.1")
|
|
|
|
|
(make-obsolete 'set-window-redisplay-end-trigger nil "23.1")
|
|
|
|
|
|
|
|
|
|
(make-obsolete 'process-filter-multibyte-p nil "23.1")
|
|
|
|
|
(make-obsolete 'set-process-filter-multibyte nil "23.1")
|
|
|
|
|
|
2002-07-19 11:37:01 +00:00
|
|
|
|
(make-obsolete-variable 'directory-sep-char "do not use it." "21.1")
|
2007-04-09 23:10:00 +00:00
|
|
|
|
(make-obsolete-variable
|
|
|
|
|
'mode-line-inverse-video
|
|
|
|
|
"use the appropriate faces instead."
|
|
|
|
|
"21.1")
|
|
|
|
|
(make-obsolete-variable
|
|
|
|
|
'unread-command-char
|
|
|
|
|
"use `unread-command-events' instead. That variable is a list of events
|
2006-12-11 16:14:15 +00:00
|
|
|
|
to reread, so it now uses nil to mean `no event', instead of -1."
|
2007-04-09 23:10:00 +00:00
|
|
|
|
"before 19.15")
|
2002-07-19 11:37:01 +00:00
|
|
|
|
|
2005-05-02 02:20:28 +00:00
|
|
|
|
;; Lisp manual only updated in 22.1.
|
|
|
|
|
(define-obsolete-variable-alias 'executing-macro 'executing-kbd-macro
|
2007-04-09 23:10:00 +00:00
|
|
|
|
"before 19.34")
|
2005-05-02 02:20:28 +00:00
|
|
|
|
|
2004-10-28 23:29:26 +00:00
|
|
|
|
(defvaralias 'x-lost-selection-hooks 'x-lost-selection-functions)
|
2007-04-09 23:10:00 +00:00
|
|
|
|
(make-obsolete-variable 'x-lost-selection-hooks
|
|
|
|
|
'x-lost-selection-functions "22.1")
|
2004-10-28 23:29:26 +00:00
|
|
|
|
(defvaralias 'x-sent-selection-hooks 'x-sent-selection-functions)
|
2007-04-09 23:10:00 +00:00
|
|
|
|
(make-obsolete-variable 'x-sent-selection-hooks
|
|
|
|
|
'x-sent-selection-functions "22.1")
|
2004-12-27 16:23:34 +00:00
|
|
|
|
|
2009-02-14 09:08:08 +00:00
|
|
|
|
;; This was introduced in 21.4 for pre-unicode unification. That
|
|
|
|
|
;; usage was rendered obsolete in 23.1 which uses Unicode internally.
|
|
|
|
|
;; Other uses are possible, so this variable is not _really_ obsolete,
|
|
|
|
|
;; but Stefan insists to mark it so.
|
|
|
|
|
(make-obsolete-variable 'translation-table-for-input nil "23.1")
|
|
|
|
|
|
2004-12-27 16:23:34 +00:00
|
|
|
|
(defvaralias 'messages-buffer-max-lines 'message-log-max)
|
2009-01-09 03:28:56 +00:00
|
|
|
|
|
|
|
|
|
;; These aliases exist in Emacs 19.34, and probably before, but were
|
|
|
|
|
;; only marked as obsolete in 23.1.
|
2009-01-10 21:57:00 +00:00
|
|
|
|
;; The lisp manual (since at least Emacs 21) describes them as
|
2009-01-09 03:28:56 +00:00
|
|
|
|
;; existing "for compatibility with Emacs version 18".
|
|
|
|
|
(define-obsolete-variable-alias 'last-input-char 'last-input-event
|
|
|
|
|
"at least 19.34")
|
|
|
|
|
(define-obsolete-variable-alias 'last-command-char 'last-command-event
|
|
|
|
|
"at least 19.34")
|
|
|
|
|
|
1993-04-10 06:21:55 +00:00
|
|
|
|
|
|
|
|
|
;;;; Alternate names for functions - these are not being phased out.
|
|
|
|
|
|
2005-05-19 23:45:09 +00:00
|
|
|
|
(defalias 'send-string 'process-send-string)
|
|
|
|
|
(defalias 'send-region 'process-send-region)
|
1993-04-23 06:50:48 +00:00
|
|
|
|
(defalias 'string= 'string-equal)
|
|
|
|
|
(defalias 'string< 'string-lessp)
|
|
|
|
|
(defalias 'move-marker 'set-marker)
|
|
|
|
|
(defalias 'rplaca 'setcar)
|
|
|
|
|
(defalias 'rplacd 'setcdr)
|
1993-06-09 11:59:12 +00:00
|
|
|
|
(defalias 'beep 'ding) ;preserve lingual purity
|
1993-04-23 06:50:48 +00:00
|
|
|
|
(defalias 'indent-to-column 'indent-to)
|
|
|
|
|
(defalias 'backward-delete-char 'delete-backward-char)
|
|
|
|
|
(defalias 'search-forward-regexp (symbol-function 're-search-forward))
|
|
|
|
|
(defalias 'search-backward-regexp (symbol-function 're-search-backward))
|
|
|
|
|
(defalias 'int-to-string 'number-to-string)
|
1998-03-14 08:15:36 +00:00
|
|
|
|
(defalias 'store-match-data 'set-match-data)
|
2008-12-24 18:27:30 +00:00
|
|
|
|
(defalias 'chmod 'set-file-modes)
|
2008-12-29 05:11:15 +00:00
|
|
|
|
(defalias 'mkdir 'make-directory)
|
2000-09-12 12:56:25 +00:00
|
|
|
|
;; These are the XEmacs names:
|
1999-08-16 20:57:24 +00:00
|
|
|
|
(defalias 'point-at-eol 'line-end-position)
|
|
|
|
|
(defalias 'point-at-bol 'line-beginning-position)
|
1993-02-22 14:16:25 +00:00
|
|
|
|
|
2005-10-22 15:01:08 +00:00
|
|
|
|
(defalias 'user-original-login-name 'user-login-name)
|
|
|
|
|
|
1990-11-05 10:06:02 +00:00
|
|
|
|
|
1993-04-10 06:21:55 +00:00
|
|
|
|
;;;; Hook manipulation functions.
|
1990-11-05 10:06:02 +00:00
|
|
|
|
|
1994-09-30 20:47:13 +00:00
|
|
|
|
(defun make-local-hook (hook)
|
|
|
|
|
"Make the hook HOOK local to the current buffer.
|
1998-11-30 23:44:10 +00:00
|
|
|
|
The return value is HOOK.
|
|
|
|
|
|
2000-11-21 21:35:38 +00:00
|
|
|
|
You never need to call this function now that `add-hook' does it for you
|
|
|
|
|
if its LOCAL argument is non-nil.
|
|
|
|
|
|
1994-09-30 20:47:13 +00:00
|
|
|
|
When a hook is local, its local and global values
|
|
|
|
|
work in concert: running the hook actually runs all the hook
|
|
|
|
|
functions listed in *either* the local value *or* the global value
|
|
|
|
|
of the hook variable.
|
|
|
|
|
|
2001-10-05 09:26:17 +00:00
|
|
|
|
This function works by making t a member of the buffer-local value,
|
1995-06-16 04:39:46 +00:00
|
|
|
|
which acts as a flag to run the hook functions in the default value as
|
|
|
|
|
well. This works for all normal hooks, but does not work for most
|
|
|
|
|
non-normal hooks yet. We will be changing the callers of non-normal
|
|
|
|
|
hooks so that they can handle localness; this has to be done one by
|
|
|
|
|
one.
|
|
|
|
|
|
|
|
|
|
This function does nothing if HOOK is already local in the current
|
|
|
|
|
buffer.
|
1994-09-30 20:47:13 +00:00
|
|
|
|
|
|
|
|
|
Do not use `make-local-variable' to make a hook variable buffer-local."
|
|
|
|
|
(if (local-variable-p hook)
|
|
|
|
|
nil
|
|
|
|
|
(or (boundp hook) (set hook nil))
|
|
|
|
|
(make-local-variable hook)
|
1998-11-30 23:44:10 +00:00
|
|
|
|
(set hook (list t)))
|
|
|
|
|
hook)
|
2002-06-27 16:08:56 +00:00
|
|
|
|
(make-obsolete 'make-local-hook "not necessary any more." "21.1")
|
1994-09-30 20:47:13 +00:00
|
|
|
|
|
|
|
|
|
(defun add-hook (hook function &optional append local)
|
1993-08-02 07:23:07 +00:00
|
|
|
|
"Add to the value of HOOK the function FUNCTION.
|
|
|
|
|
FUNCTION is not added if already present.
|
|
|
|
|
FUNCTION is added (if necessary) at the beginning of the hook list
|
|
|
|
|
unless the optional argument APPEND is non-nil, in which case
|
|
|
|
|
FUNCTION is added at the end.
|
|
|
|
|
|
1994-09-30 20:47:13 +00:00
|
|
|
|
The optional fourth argument, LOCAL, if non-nil, says to modify
|
|
|
|
|
the hook's buffer-local value rather than its default value.
|
2002-02-20 22:30:39 +00:00
|
|
|
|
This makes the hook buffer-local if needed, and it makes t a member
|
|
|
|
|
of the buffer-local value. That acts as a flag to run the hook
|
|
|
|
|
functions in the default value as well as in the local value.
|
1994-09-30 20:47:13 +00:00
|
|
|
|
|
1993-08-02 07:23:07 +00:00
|
|
|
|
HOOK should be a symbol, and FUNCTION may be any valid function. If
|
|
|
|
|
HOOK is void, it is first set to nil. If HOOK's value is a single
|
1994-09-21 05:19:43 +00:00
|
|
|
|
function, it is changed to a list of functions."
|
1990-11-05 10:06:02 +00:00
|
|
|
|
(or (boundp hook) (set hook nil))
|
1994-09-30 20:47:13 +00:00
|
|
|
|
(or (default-boundp hook) (set-default hook nil))
|
2001-10-05 09:26:17 +00:00
|
|
|
|
(if local (unless (local-variable-if-set-p hook)
|
|
|
|
|
(set (make-local-variable hook) (list t)))
|
2000-05-10 22:40:17 +00:00
|
|
|
|
;; Detect the case where make-local-variable was used on a hook
|
|
|
|
|
;; and do what we used to do.
|
|
|
|
|
(unless (and (consp (symbol-value hook)) (memq t (symbol-value hook)))
|
|
|
|
|
(setq local t)))
|
|
|
|
|
(let ((hook-value (if local (symbol-value hook) (default-value hook))))
|
|
|
|
|
;; If the hook value is a single function, turn it into a list.
|
|
|
|
|
(when (or (not (listp hook-value)) (eq (car hook-value) 'lambda))
|
2000-05-16 14:47:46 +00:00
|
|
|
|
(setq hook-value (list hook-value)))
|
2000-05-10 22:40:17 +00:00
|
|
|
|
;; Do the actual addition if necessary
|
|
|
|
|
(unless (member function hook-value)
|
2009-11-11 06:16:16 +00:00
|
|
|
|
(when (stringp function)
|
|
|
|
|
(setq function (purecopy function)))
|
2000-05-10 22:40:17 +00:00
|
|
|
|
(setq hook-value
|
|
|
|
|
(if append
|
|
|
|
|
(append hook-value (list function))
|
|
|
|
|
(cons function hook-value))))
|
|
|
|
|
;; Set the actual variable
|
2008-01-25 22:51:18 +00:00
|
|
|
|
(if local
|
|
|
|
|
(progn
|
|
|
|
|
;; If HOOK isn't a permanent local,
|
|
|
|
|
;; but FUNCTION wants to survive a change of modes,
|
|
|
|
|
;; mark HOOK as partially permanent.
|
|
|
|
|
(and (symbolp function)
|
|
|
|
|
(get function 'permanent-local-hook)
|
|
|
|
|
(not (get hook 'permanent-local))
|
|
|
|
|
(put hook 'permanent-local 'permanent-local-hook))
|
|
|
|
|
(set hook hook-value))
|
|
|
|
|
(set-default hook hook-value))))
|
1994-09-30 20:47:13 +00:00
|
|
|
|
|
|
|
|
|
(defun remove-hook (hook function &optional local)
|
1993-11-10 20:30:32 +00:00
|
|
|
|
"Remove from the value of HOOK the function FUNCTION.
|
|
|
|
|
HOOK should be a symbol, and FUNCTION may be any valid function. If
|
|
|
|
|
FUNCTION isn't the value of HOOK, or, if FUNCTION doesn't appear in the
|
1994-09-30 20:47:13 +00:00
|
|
|
|
list of hooks to run in HOOK, then nothing is done. See `add-hook'.
|
|
|
|
|
|
|
|
|
|
The optional third argument, LOCAL, if non-nil, says to modify
|
2004-04-16 12:51:06 +00:00
|
|
|
|
the hook's buffer-local value rather than its default value."
|
2000-05-10 22:40:17 +00:00
|
|
|
|
(or (boundp hook) (set hook nil))
|
|
|
|
|
(or (default-boundp hook) (set-default hook nil))
|
2004-04-16 12:51:06 +00:00
|
|
|
|
;; Do nothing if LOCAL is t but this hook has no local binding.
|
|
|
|
|
(unless (and local (not (local-variable-p hook)))
|
2000-05-10 22:40:17 +00:00
|
|
|
|
;; Detect the case where make-local-variable was used on a hook
|
|
|
|
|
;; and do what we used to do.
|
2004-04-16 12:51:06 +00:00
|
|
|
|
(when (and (local-variable-p hook)
|
|
|
|
|
(not (and (consp (symbol-value hook))
|
|
|
|
|
(memq t (symbol-value hook)))))
|
|
|
|
|
(setq local t))
|
|
|
|
|
(let ((hook-value (if local (symbol-value hook) (default-value hook))))
|
|
|
|
|
;; Remove the function, for both the list and the non-list cases.
|
|
|
|
|
(if (or (not (listp hook-value)) (eq (car hook-value) 'lambda))
|
|
|
|
|
(if (equal hook-value function) (setq hook-value nil))
|
|
|
|
|
(setq hook-value (delete function (copy-sequence hook-value))))
|
|
|
|
|
;; If the function is on the global hook, we need to shadow it locally
|
|
|
|
|
;;(when (and local (member function (default-value hook))
|
|
|
|
|
;; (not (member (cons 'not function) hook-value)))
|
|
|
|
|
;; (push (cons 'not function) hook-value))
|
|
|
|
|
;; Set the actual variable
|
|
|
|
|
(if (not local)
|
|
|
|
|
(set-default hook hook-value)
|
|
|
|
|
(if (equal hook-value '(t))
|
|
|
|
|
(kill-local-variable hook)
|
|
|
|
|
(set hook hook-value))))))
|
1994-10-13 06:34:09 +00:00
|
|
|
|
|
2006-09-10 17:45:42 +00:00
|
|
|
|
(defun add-to-list (list-var element &optional append compare-fn)
|
2005-06-27 21:21:36 +00:00
|
|
|
|
"Add ELEMENT to the value of LIST-VAR if it isn't there yet.
|
2006-09-10 17:45:42 +00:00
|
|
|
|
The test for presence of ELEMENT is done with `equal',
|
|
|
|
|
or with COMPARE-FN if that's non-nil.
|
2000-10-10 02:47:30 +00:00
|
|
|
|
If ELEMENT is added, it is added at the beginning of the list,
|
|
|
|
|
unless the optional argument APPEND is non-nil, in which case
|
|
|
|
|
ELEMENT is added at the end.
|
1999-05-22 19:42:01 +00:00
|
|
|
|
|
2002-03-11 13:31:50 +00:00
|
|
|
|
The return value is the new value of LIST-VAR.
|
|
|
|
|
|
1994-10-14 23:50:35 +00:00
|
|
|
|
If you want to use `add-to-list' on a variable that is not defined
|
|
|
|
|
until a certain package is loaded, you should put the call to `add-to-list'
|
|
|
|
|
into a hook function that will be run only after loading the package.
|
|
|
|
|
`eval-after-load' provides one way to do this. In some cases
|
|
|
|
|
other hooks, such as major mode hooks, can do the job."
|
2006-10-22 22:32:53 +00:00
|
|
|
|
(if (cond
|
2006-10-22 22:37:51 +00:00
|
|
|
|
((null compare-fn)
|
2006-09-10 17:45:42 +00:00
|
|
|
|
(member element (symbol-value list-var)))
|
2006-10-22 22:32:53 +00:00
|
|
|
|
((eq compare-fn 'eq)
|
|
|
|
|
(memq element (symbol-value list-var)))
|
|
|
|
|
((eq compare-fn 'eql)
|
|
|
|
|
(memql element (symbol-value list-var)))
|
2006-10-22 22:37:51 +00:00
|
|
|
|
(t
|
2006-10-30 22:49:04 +00:00
|
|
|
|
(let ((lst (symbol-value list-var)))
|
|
|
|
|
(while (and lst
|
|
|
|
|
(not (funcall compare-fn element (car lst))))
|
|
|
|
|
(setq lst (cdr lst)))
|
|
|
|
|
lst)))
|
1998-04-07 18:22:28 +00:00
|
|
|
|
(symbol-value list-var)
|
2000-10-10 02:47:30 +00:00
|
|
|
|
(set list-var
|
|
|
|
|
(if append
|
|
|
|
|
(append (symbol-value list-var) (list element))
|
|
|
|
|
(cons element (symbol-value list-var))))))
|
2001-10-09 11:14:31 +00:00
|
|
|
|
|
2005-06-13 21:29:52 +00:00
|
|
|
|
|
|
|
|
|
(defun add-to-ordered-list (list-var element &optional order)
|
2005-06-27 21:21:36 +00:00
|
|
|
|
"Add ELEMENT to the value of LIST-VAR if it isn't there yet.
|
2005-06-20 21:41:34 +00:00
|
|
|
|
The test for presence of ELEMENT is done with `eq'.
|
2005-06-13 21:29:52 +00:00
|
|
|
|
|
|
|
|
|
The resulting list is reordered so that the elements are in the
|
2005-06-20 21:41:34 +00:00
|
|
|
|
order given by each element's numeric list order. Elements
|
|
|
|
|
without a numeric list order are placed at the end of the list.
|
2005-06-13 21:29:52 +00:00
|
|
|
|
|
2005-06-27 21:21:36 +00:00
|
|
|
|
If the third optional argument ORDER is a number (integer or
|
|
|
|
|
float), set the element's list order to the given value. If
|
|
|
|
|
ORDER is nil or omitted, do not change the numeric order of
|
|
|
|
|
ELEMENT. If ORDER has any other value, remove the numeric order
|
|
|
|
|
of ELEMENT if it has one.
|
2005-06-14 08:14:06 +00:00
|
|
|
|
|
2005-06-15 20:58:20 +00:00
|
|
|
|
The list order for each element is stored in LIST-VAR's
|
2005-06-14 08:14:06 +00:00
|
|
|
|
`list-order' property.
|
2005-06-13 21:29:52 +00:00
|
|
|
|
|
|
|
|
|
The return value is the new value of LIST-VAR."
|
2005-06-15 20:58:20 +00:00
|
|
|
|
(let ((ordering (get list-var 'list-order)))
|
|
|
|
|
(unless ordering
|
|
|
|
|
(put list-var 'list-order
|
|
|
|
|
(setq ordering (make-hash-table :weakness 'key :test 'eq))))
|
2005-06-14 08:14:06 +00:00
|
|
|
|
(when order
|
2005-06-20 21:41:34 +00:00
|
|
|
|
(puthash element (and (numberp order) order) ordering))
|
|
|
|
|
(unless (memq element (symbol-value list-var))
|
|
|
|
|
(set list-var (cons element (symbol-value list-var))))
|
2005-06-14 08:14:06 +00:00
|
|
|
|
(set list-var (sort (symbol-value list-var)
|
|
|
|
|
(lambda (a b)
|
2005-06-15 20:58:20 +00:00
|
|
|
|
(let ((oa (gethash a ordering))
|
|
|
|
|
(ob (gethash b ordering)))
|
2005-06-20 21:41:34 +00:00
|
|
|
|
(if (and oa ob)
|
|
|
|
|
(< oa ob)
|
|
|
|
|
oa)))))))
|
2006-05-05 23:35:57 +00:00
|
|
|
|
|
2006-05-16 11:19:39 +00:00
|
|
|
|
(defun add-to-history (history-var newelt &optional maxelt keep-all)
|
2006-05-05 23:35:57 +00:00
|
|
|
|
"Add NEWELT to the history list stored in the variable HISTORY-VAR.
|
|
|
|
|
Return the new history list.
|
|
|
|
|
If MAXELT is non-nil, it specifies the maximum length of the history.
|
|
|
|
|
Otherwise, the maximum history length is the value of the `history-length'
|
|
|
|
|
property on symbol HISTORY-VAR, if set, or the value of the `history-length'
|
|
|
|
|
variable.
|
2006-05-16 11:19:39 +00:00
|
|
|
|
Remove duplicates of NEWELT if `history-delete-duplicates' is non-nil.
|
|
|
|
|
If optional fourth arg KEEP-ALL is non-nil, add NEWELT to history even
|
|
|
|
|
if it is empty or a duplicate."
|
2006-05-05 23:35:57 +00:00
|
|
|
|
(unless maxelt
|
|
|
|
|
(setq maxelt (or (get history-var 'history-length)
|
|
|
|
|
history-length)))
|
|
|
|
|
(let ((history (symbol-value history-var))
|
|
|
|
|
tail)
|
2006-05-16 11:19:39 +00:00
|
|
|
|
(when (and (listp history)
|
|
|
|
|
(or keep-all
|
|
|
|
|
(not (stringp newelt))
|
|
|
|
|
(> (length newelt) 0))
|
|
|
|
|
(or keep-all
|
|
|
|
|
(not (equal (car history) newelt))))
|
|
|
|
|
(if history-delete-duplicates
|
|
|
|
|
(delete newelt history))
|
|
|
|
|
(setq history (cons newelt history))
|
|
|
|
|
(when (integerp maxelt)
|
|
|
|
|
(if (= 0 maxelt)
|
|
|
|
|
(setq history nil)
|
|
|
|
|
(setq tail (nthcdr (1- maxelt) history))
|
|
|
|
|
(when (consp tail)
|
|
|
|
|
(setcdr tail nil)))))
|
2006-05-05 23:35:57 +00:00
|
|
|
|
(set history-var history)))
|
|
|
|
|
|
2005-10-22 15:01:08 +00:00
|
|
|
|
|
|
|
|
|
;;;; Mode hooks.
|
|
|
|
|
|
|
|
|
|
(defvar delay-mode-hooks nil
|
|
|
|
|
"If non-nil, `run-mode-hooks' should delay running the hooks.")
|
|
|
|
|
(defvar delayed-mode-hooks nil
|
|
|
|
|
"List of delayed mode hooks waiting to be run.")
|
|
|
|
|
(make-variable-buffer-local 'delayed-mode-hooks)
|
|
|
|
|
(put 'delay-mode-hooks 'permanent-local t)
|
2005-06-13 21:29:52 +00:00
|
|
|
|
|
2005-10-22 15:01:08 +00:00
|
|
|
|
(defvar after-change-major-mode-hook nil
|
|
|
|
|
"Normal hook run at the very end of major mode functions.")
|
|
|
|
|
|
|
|
|
|
(defun run-mode-hooks (&rest hooks)
|
|
|
|
|
"Run mode hooks `delayed-mode-hooks' and HOOKS, or delay HOOKS.
|
|
|
|
|
Execution is delayed if `delay-mode-hooks' is non-nil.
|
|
|
|
|
If `delay-mode-hooks' is nil, run `after-change-major-mode-hook'
|
|
|
|
|
after running the mode hooks.
|
2007-07-08 19:35:50 +00:00
|
|
|
|
Major mode functions should use this instead of `run-hooks' when running their
|
|
|
|
|
FOO-mode-hook."
|
2005-10-22 15:01:08 +00:00
|
|
|
|
(if delay-mode-hooks
|
|
|
|
|
;; Delaying case.
|
|
|
|
|
(dolist (hook hooks)
|
|
|
|
|
(push hook delayed-mode-hooks))
|
|
|
|
|
;; Normal case, just run the hook as before plus any delayed hooks.
|
|
|
|
|
(setq hooks (nconc (nreverse delayed-mode-hooks) hooks))
|
|
|
|
|
(setq delayed-mode-hooks nil)
|
|
|
|
|
(apply 'run-hooks hooks)
|
|
|
|
|
(run-hooks 'after-change-major-mode-hook)))
|
|
|
|
|
|
|
|
|
|
(defmacro delay-mode-hooks (&rest body)
|
|
|
|
|
"Execute BODY, but delay any `run-mode-hooks'.
|
|
|
|
|
These hooks will be executed by the first following call to
|
|
|
|
|
`run-mode-hooks' that occurs outside any `delayed-mode-hooks' form.
|
|
|
|
|
Only affects hooks run in the current buffer."
|
|
|
|
|
(declare (debug t) (indent 0))
|
|
|
|
|
`(progn
|
|
|
|
|
(make-local-variable 'delay-mode-hooks)
|
|
|
|
|
(let ((delay-mode-hooks t))
|
|
|
|
|
,@body)))
|
|
|
|
|
|
|
|
|
|
;; PUBLIC: find if the current mode derives from another.
|
|
|
|
|
|
|
|
|
|
(defun derived-mode-p (&rest modes)
|
|
|
|
|
"Non-nil if the current major mode is derived from one of MODES.
|
|
|
|
|
Uses the `derived-mode-parent' property of the symbol to trace backwards."
|
|
|
|
|
(let ((parent major-mode))
|
|
|
|
|
(while (and (not (memq parent modes))
|
|
|
|
|
(setq parent (get parent 'derived-mode-parent))))
|
|
|
|
|
parent))
|
|
|
|
|
|
|
|
|
|
;;;; Minor modes.
|
|
|
|
|
|
|
|
|
|
;; If a minor mode is not defined with define-minor-mode,
|
|
|
|
|
;; add it here explicitly.
|
|
|
|
|
;; isearch-mode is deliberately excluded, since you should
|
|
|
|
|
;; not call it yourself.
|
|
|
|
|
(defvar minor-mode-list '(auto-save-mode auto-fill-mode abbrev-mode
|
|
|
|
|
overwrite-mode view-mode
|
|
|
|
|
hs-minor-mode)
|
|
|
|
|
"List of all minor mode functions.")
|
|
|
|
|
|
|
|
|
|
(defun add-minor-mode (toggle name &optional keymap after toggle-fun)
|
|
|
|
|
"Register a new minor mode.
|
|
|
|
|
|
|
|
|
|
This is an XEmacs-compatibility function. Use `define-minor-mode' instead.
|
|
|
|
|
|
|
|
|
|
TOGGLE is a symbol which is the name of a buffer-local variable that
|
|
|
|
|
is toggled on or off to say whether the minor mode is active or not.
|
|
|
|
|
|
|
|
|
|
NAME specifies what will appear in the mode line when the minor mode
|
|
|
|
|
is active. NAME should be either a string starting with a space, or a
|
|
|
|
|
symbol whose value is such a string.
|
|
|
|
|
|
|
|
|
|
Optional KEYMAP is the keymap for the minor mode that will be added
|
|
|
|
|
to `minor-mode-map-alist'.
|
|
|
|
|
|
|
|
|
|
Optional AFTER specifies that TOGGLE should be added after AFTER
|
|
|
|
|
in `minor-mode-alist'.
|
|
|
|
|
|
|
|
|
|
Optional TOGGLE-FUN is an interactive function to toggle the mode.
|
|
|
|
|
It defaults to (and should by convention be) TOGGLE.
|
|
|
|
|
|
|
|
|
|
If TOGGLE has a non-nil `:included' property, an entry for the mode is
|
|
|
|
|
included in the mode-line minor mode menu.
|
|
|
|
|
If TOGGLE has a `:menu-tag', that is used for the menu item's label."
|
|
|
|
|
(unless (memq toggle minor-mode-list)
|
|
|
|
|
(push toggle minor-mode-list))
|
|
|
|
|
|
|
|
|
|
(unless toggle-fun (setq toggle-fun toggle))
|
|
|
|
|
(unless (eq toggle-fun toggle)
|
|
|
|
|
(put toggle :minor-mode-function toggle-fun))
|
|
|
|
|
;; Add the name to the minor-mode-alist.
|
|
|
|
|
(when name
|
|
|
|
|
(let ((existing (assq toggle minor-mode-alist)))
|
|
|
|
|
(if existing
|
|
|
|
|
(setcdr existing (list name))
|
|
|
|
|
(let ((tail minor-mode-alist) found)
|
|
|
|
|
(while (and tail (not found))
|
|
|
|
|
(if (eq after (caar tail))
|
|
|
|
|
(setq found tail)
|
|
|
|
|
(setq tail (cdr tail))))
|
|
|
|
|
(if found
|
|
|
|
|
(let ((rest (cdr found)))
|
|
|
|
|
(setcdr found nil)
|
|
|
|
|
(nconc found (list (list toggle name)) rest))
|
|
|
|
|
(setq minor-mode-alist (cons (list toggle name)
|
|
|
|
|
minor-mode-alist)))))))
|
|
|
|
|
;; Add the toggle to the minor-modes menu if requested.
|
|
|
|
|
(when (get toggle :included)
|
|
|
|
|
(define-key mode-line-mode-menu
|
|
|
|
|
(vector toggle)
|
|
|
|
|
(list 'menu-item
|
|
|
|
|
(concat
|
|
|
|
|
(or (get toggle :menu-tag)
|
|
|
|
|
(if (stringp name) name (symbol-name toggle)))
|
|
|
|
|
(let ((mode-name (if (symbolp name) (symbol-value name))))
|
|
|
|
|
(if (and (stringp mode-name) (string-match "[^ ]+" mode-name))
|
|
|
|
|
(concat " (" (match-string 0 mode-name) ")"))))
|
|
|
|
|
toggle-fun
|
|
|
|
|
:button (cons :toggle toggle))))
|
2005-06-13 21:29:52 +00:00
|
|
|
|
|
2005-10-22 15:01:08 +00:00
|
|
|
|
;; Add the map to the minor-mode-map-alist.
|
|
|
|
|
(when keymap
|
|
|
|
|
(let ((existing (assq toggle minor-mode-map-alist)))
|
|
|
|
|
(if existing
|
|
|
|
|
(setcdr existing keymap)
|
|
|
|
|
(let ((tail minor-mode-map-alist) found)
|
|
|
|
|
(while (and tail (not found))
|
|
|
|
|
(if (eq after (caar tail))
|
|
|
|
|
(setq found tail)
|
|
|
|
|
(setq tail (cdr tail))))
|
|
|
|
|
(if found
|
|
|
|
|
(let ((rest (cdr found)))
|
|
|
|
|
(setcdr found nil)
|
|
|
|
|
(nconc found (list (cons toggle keymap)) rest))
|
|
|
|
|
(setq minor-mode-map-alist (cons (cons toggle keymap)
|
|
|
|
|
minor-mode-map-alist))))))))
|
2001-10-09 11:14:31 +00:00
|
|
|
|
|
|
|
|
|
;;; Load history
|
|
|
|
|
|
2006-04-29 13:56:19 +00:00
|
|
|
|
;; (defvar symbol-file-load-history-loaded nil
|
|
|
|
|
;; "Non-nil means we have loaded the file `fns-VERSION.el' in `exec-directory'.
|
|
|
|
|
;; That file records the part of `load-history' for preloaded files,
|
|
|
|
|
;; which is cleared out before dumping to make Emacs smaller.")
|
|
|
|
|
|
|
|
|
|
;; (defun load-symbol-file-load-history ()
|
|
|
|
|
;; "Load the file `fns-VERSION.el' in `exec-directory' if not already done.
|
|
|
|
|
;; That file records the part of `load-history' for preloaded files,
|
|
|
|
|
;; which is cleared out before dumping to make Emacs smaller."
|
|
|
|
|
;; (unless symbol-file-load-history-loaded
|
|
|
|
|
;; (load (expand-file-name
|
|
|
|
|
;; ;; fns-XX.YY.ZZ.el does not work on DOS filesystem.
|
|
|
|
|
;; (if (eq system-type 'ms-dos)
|
|
|
|
|
;; "fns.el"
|
|
|
|
|
;; (format "fns-%s.el" emacs-version))
|
|
|
|
|
;; exec-directory)
|
|
|
|
|
;; ;; The file name fns-%s.el already has a .el extension.
|
|
|
|
|
;; nil nil t)
|
|
|
|
|
;; (setq symbol-file-load-history-loaded t)))
|
2001-10-09 11:14:31 +00:00
|
|
|
|
|
2004-12-27 16:23:34 +00:00
|
|
|
|
(defun symbol-file (symbol &optional type)
|
2008-09-06 10:02:33 +00:00
|
|
|
|
"Return the name of the file that defined SYMBOL.
|
|
|
|
|
The value is normally an absolute file name. It can also be nil,
|
|
|
|
|
if the definition is not associated with any file. If SYMBOL
|
|
|
|
|
specifies an autoloaded function, the value can be a relative
|
|
|
|
|
file name without extension.
|
|
|
|
|
|
|
|
|
|
If TYPE is nil, then any kind of definition is acceptable. If
|
|
|
|
|
TYPE is `defun', `defvar', or `defface', that specifies function
|
|
|
|
|
definition, variable definition, or face definition only."
|
2004-12-27 16:23:34 +00:00
|
|
|
|
(if (and (or (null type) (eq type 'defun))
|
|
|
|
|
(symbolp symbol) (fboundp symbol)
|
|
|
|
|
(eq 'autoload (car-safe (symbol-function symbol))))
|
|
|
|
|
(nth 1 (symbol-function symbol))
|
2002-09-09 23:13:18 +00:00
|
|
|
|
(let ((files load-history)
|
2002-11-20 12:58:37 +00:00
|
|
|
|
file)
|
2002-09-09 23:13:18 +00:00
|
|
|
|
(while files
|
2004-12-27 16:23:34 +00:00
|
|
|
|
(if (if type
|
|
|
|
|
(if (eq type 'defvar)
|
|
|
|
|
;; Variables are present just as their names.
|
|
|
|
|
(member symbol (cdr (car files)))
|
|
|
|
|
;; Other types are represented as (TYPE . NAME).
|
|
|
|
|
(member (cons type symbol) (cdr (car files))))
|
|
|
|
|
;; We accept all types, so look for variable def
|
|
|
|
|
;; and then for any other kind.
|
|
|
|
|
(or (member symbol (cdr (car files)))
|
|
|
|
|
(rassq symbol (cdr (car files)))))
|
2002-09-09 23:13:18 +00:00
|
|
|
|
(setq file (car (car files)) files nil))
|
|
|
|
|
(setq files (cdr files)))
|
|
|
|
|
file)))
|
2001-10-09 11:14:31 +00:00
|
|
|
|
|
2005-10-28 16:55:48 +00:00
|
|
|
|
(defun locate-library (library &optional nosuffix path interactive-call)
|
|
|
|
|
"Show the precise file name of Emacs library LIBRARY.
|
2009-02-13 15:19:06 +00:00
|
|
|
|
LIBRARY should be a relative file name of the library, a string.
|
|
|
|
|
It can omit the suffix (a.k.a. file-name extension) if NOSUFFIX is
|
|
|
|
|
nil (which is the default, see below).
|
2005-10-28 16:55:48 +00:00
|
|
|
|
This command searches the directories in `load-path' like `\\[load-library]'
|
|
|
|
|
to find the file that `\\[load-library] RET LIBRARY RET' would load.
|
|
|
|
|
Optional second arg NOSUFFIX non-nil means don't add suffixes `load-suffixes'
|
|
|
|
|
to the specified name LIBRARY.
|
|
|
|
|
|
|
|
|
|
If the optional third arg PATH is specified, that list of directories
|
|
|
|
|
is used instead of `load-path'.
|
|
|
|
|
|
2008-06-10 03:10:06 +00:00
|
|
|
|
When called from a program, the file name is normally returned as a
|
2005-10-28 16:55:48 +00:00
|
|
|
|
string. When run interactively, the argument INTERACTIVE-CALL is t,
|
|
|
|
|
and the file name is displayed in the echo area."
|
|
|
|
|
(interactive (list (completing-read "Locate library: "
|
2008-04-19 04:01:16 +00:00
|
|
|
|
(apply-partially
|
|
|
|
|
'locate-file-completion-table
|
|
|
|
|
load-path (get-load-suffixes)))
|
2005-10-28 16:55:48 +00:00
|
|
|
|
nil nil
|
|
|
|
|
t))
|
|
|
|
|
(let ((file (locate-file library
|
|
|
|
|
(or path load-path)
|
2006-02-27 02:01:08 +00:00
|
|
|
|
(append (unless nosuffix (get-load-suffixes))
|
|
|
|
|
load-file-rep-suffixes))))
|
2005-10-28 16:55:48 +00:00
|
|
|
|
(if interactive-call
|
|
|
|
|
(if file
|
|
|
|
|
(message "Library is file %s" (abbreviate-file-name file))
|
|
|
|
|
(message "No library %s in search path" library)))
|
|
|
|
|
file))
|
|
|
|
|
|
1990-11-05 10:06:02 +00:00
|
|
|
|
|
2005-10-22 15:23:00 +00:00
|
|
|
|
;;;; Specifying things to do later.
|
|
|
|
|
|
2006-05-24 13:22:12 +00:00
|
|
|
|
(defun load-history-regexp (file)
|
2006-05-29 00:28:43 +00:00
|
|
|
|
"Form a regexp to find FILE in `load-history'.
|
|
|
|
|
FILE, a string, is described in the function `eval-after-load'."
|
2006-05-24 13:22:12 +00:00
|
|
|
|
(if (file-name-absolute-p file)
|
|
|
|
|
(setq file (file-truename file)))
|
2006-05-29 00:28:43 +00:00
|
|
|
|
(concat (if (file-name-absolute-p file) "\\`" "\\(\\`\\|/\\)")
|
2006-05-24 13:22:12 +00:00
|
|
|
|
(regexp-quote file)
|
|
|
|
|
(if (file-name-extension file)
|
|
|
|
|
""
|
|
|
|
|
;; Note: regexp-opt can't be used here, since we need to call
|
|
|
|
|
;; this before Emacs has been fully started. 2006-05-21
|
|
|
|
|
(concat "\\(" (mapconcat 'regexp-quote load-suffixes "\\|") "\\)?"))
|
|
|
|
|
"\\(" (mapconcat 'regexp-quote jka-compr-load-suffixes "\\|")
|
|
|
|
|
"\\)?\\'"))
|
|
|
|
|
|
|
|
|
|
(defun load-history-filename-element (file-regexp)
|
2006-05-29 00:28:43 +00:00
|
|
|
|
"Get the first elt of `load-history' whose car matches FILE-REGEXP.
|
2006-05-24 13:22:12 +00:00
|
|
|
|
Return nil if there isn't one."
|
|
|
|
|
(let* ((loads load-history)
|
|
|
|
|
(load-elt (and loads (car loads))))
|
|
|
|
|
(save-match-data
|
|
|
|
|
(while (and loads
|
|
|
|
|
(or (null (car load-elt))
|
|
|
|
|
(not (string-match file-regexp (car load-elt)))))
|
|
|
|
|
(setq loads (cdr loads)
|
|
|
|
|
load-elt (and loads (car loads)))))
|
|
|
|
|
load-elt))
|
|
|
|
|
|
1993-04-10 06:21:55 +00:00
|
|
|
|
(defun eval-after-load (file form)
|
|
|
|
|
"Arrange that, if FILE is ever loaded, FORM will be run at that time.
|
1995-02-22 01:30:19 +00:00
|
|
|
|
If FILE is already loaded, evaluate FORM right now.
|
2006-05-24 13:22:12 +00:00
|
|
|
|
|
|
|
|
|
If a matching file is loaded again, FORM will be evaluated again.
|
|
|
|
|
|
|
|
|
|
If FILE is a string, it may be either an absolute or a relative file
|
|
|
|
|
name, and may have an extension \(e.g. \".el\") or may lack one, and
|
|
|
|
|
additionally may or may not have an extension denoting a compressed
|
|
|
|
|
format \(e.g. \".gz\").
|
|
|
|
|
|
2006-05-29 00:28:43 +00:00
|
|
|
|
When FILE is absolute, this first converts it to a true name by chasing
|
|
|
|
|
symbolic links. Only a file of this name \(see next paragraph regarding
|
2006-05-24 13:22:12 +00:00
|
|
|
|
extensions) will trigger the evaluation of FORM. When FILE is relative,
|
|
|
|
|
a file whose absolute true name ends in FILE will trigger evaluation.
|
|
|
|
|
|
|
|
|
|
When FILE lacks an extension, a file name with any extension will trigger
|
|
|
|
|
evaluation. Otherwise, its extension must match FILE's. A further
|
|
|
|
|
extension for a compressed format \(e.g. \".gz\") on FILE will not affect
|
|
|
|
|
this name matching.
|
|
|
|
|
|
|
|
|
|
Alternatively, FILE can be a feature (i.e. a symbol), in which case FORM
|
2009-07-06 00:51:27 +00:00
|
|
|
|
is evaluated whenever that feature is `provide'd. Note that although
|
|
|
|
|
provide statements are usually at the end of files, this is not always
|
|
|
|
|
the case (e.g., sometimes they are at the start to avoid a recursive
|
|
|
|
|
load error). If your FORM should not be evaluated until the code in
|
|
|
|
|
FILE has been, do not use the symbol form for FILE in such cases.
|
2006-05-24 13:22:12 +00:00
|
|
|
|
|
|
|
|
|
Usually FILE is just a library name like \"font-lock\" or a feature name
|
|
|
|
|
like 'font-lock.
|
|
|
|
|
|
|
|
|
|
This function makes or adds to an entry on `after-load-alist'."
|
|
|
|
|
;; Add this FORM into after-load-alist (regardless of whether we'll be
|
|
|
|
|
;; evaluating it now).
|
|
|
|
|
(let* ((regexp-or-feature
|
2009-11-11 06:16:16 +00:00
|
|
|
|
(if (stringp file) (setq file (purecopy (load-history-regexp file))) file))
|
2006-05-24 13:22:12 +00:00
|
|
|
|
(elt (assoc regexp-or-feature after-load-alist)))
|
|
|
|
|
(unless elt
|
|
|
|
|
(setq elt (list regexp-or-feature))
|
|
|
|
|
(push elt after-load-alist))
|
|
|
|
|
;; Add FORM to the element unless it's already there.
|
2001-11-16 14:15:08 +00:00
|
|
|
|
(unless (member form (cdr elt))
|
2009-11-11 06:16:16 +00:00
|
|
|
|
(nconc elt (purecopy (list form))))
|
2006-05-24 13:22:12 +00:00
|
|
|
|
|
|
|
|
|
;; Is there an already loaded file whose name (or `provide' name)
|
|
|
|
|
;; matches FILE?
|
|
|
|
|
(if (if (stringp file)
|
|
|
|
|
(load-history-filename-element regexp-or-feature)
|
|
|
|
|
(featurep file))
|
|
|
|
|
(eval form))))
|
|
|
|
|
|
2009-09-15 03:39:40 +00:00
|
|
|
|
(defvar after-load-functions nil
|
|
|
|
|
"Special hook run after loading a file.
|
|
|
|
|
Each function there is called with a single argument, the absolute
|
|
|
|
|
name of the file just loaded.")
|
|
|
|
|
|
2006-05-24 13:22:12 +00:00
|
|
|
|
(defun do-after-load-evaluation (abs-file)
|
|
|
|
|
"Evaluate all `eval-after-load' forms, if any, for ABS-FILE.
|
2009-09-12 03:35:40 +00:00
|
|
|
|
ABS-FILE, a string, should be the absolute true name of a file just loaded.
|
|
|
|
|
This function is called directly from the C code."
|
|
|
|
|
;; Run the relevant eval-after-load forms.
|
2009-08-30 18:17:20 +00:00
|
|
|
|
(mapc #'(lambda (a-l-element)
|
|
|
|
|
(when (and (stringp (car a-l-element))
|
|
|
|
|
(string-match-p (car a-l-element) abs-file))
|
|
|
|
|
;; discard the file name regexp
|
|
|
|
|
(mapc #'eval (cdr a-l-element))))
|
2009-09-12 03:35:40 +00:00
|
|
|
|
after-load-alist)
|
|
|
|
|
;; Complain when the user uses obsolete files.
|
2009-09-15 03:39:40 +00:00
|
|
|
|
(when (string-match-p "/obsolete/[^/]*\\'" abs-file)
|
2009-09-12 03:35:40 +00:00
|
|
|
|
(run-with-timer 0 nil
|
|
|
|
|
(lambda (file)
|
|
|
|
|
(message "Package %s is obsolete!"
|
|
|
|
|
(substring file 0
|
|
|
|
|
(string-match "\\.elc?\\>" file))))
|
2009-09-15 03:39:40 +00:00
|
|
|
|
(file-name-nondirectory abs-file)))
|
|
|
|
|
;; Finally, run any other hook.
|
|
|
|
|
(run-hook-with-args 'after-load-functions abs-file))
|
1993-04-10 06:21:55 +00:00
|
|
|
|
|
|
|
|
|
(defun eval-next-after-load (file)
|
|
|
|
|
"Read the following input sexp, and run it whenever FILE is loaded.
|
|
|
|
|
This makes or adds to an entry on `after-load-alist'.
|
|
|
|
|
FILE should be the name of a library, with no directory name."
|
|
|
|
|
(eval-after-load file (read)))
|
2009-09-17 15:58:35 +00:00
|
|
|
|
(make-obsolete 'eval-next-after-load `eval-after-load "23.2")
|
2002-05-30 17:12:53 +00:00
|
|
|
|
|
2005-10-22 15:01:08 +00:00
|
|
|
|
;;;; Process stuff.
|
|
|
|
|
|
2007-11-17 03:42:22 +00:00
|
|
|
|
(defun process-lines (program &rest args)
|
|
|
|
|
"Execute PROGRAM with ARGS, returning its output as a list of lines.
|
|
|
|
|
Signal an error if the program returns with a non-zero exit status."
|
|
|
|
|
(with-temp-buffer
|
|
|
|
|
(let ((status (apply 'call-process program nil (current-buffer) nil args)))
|
|
|
|
|
(unless (eq status 0)
|
|
|
|
|
(error "%s exited with status %s" program status))
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(let (lines)
|
|
|
|
|
(while (not (eobp))
|
|
|
|
|
(setq lines (cons (buffer-substring-no-properties
|
|
|
|
|
(line-beginning-position)
|
|
|
|
|
(line-end-position))
|
|
|
|
|
lines))
|
|
|
|
|
(forward-line 1))
|
|
|
|
|
(nreverse lines)))))
|
|
|
|
|
|
2005-10-22 15:01:08 +00:00
|
|
|
|
;; open-network-stream is a wrapper around make-network-process.
|
2002-05-30 17:12:53 +00:00
|
|
|
|
|
2005-05-15 20:42:43 +00:00
|
|
|
|
(when (featurep 'make-network-process)
|
|
|
|
|
(defun open-network-stream (name buffer host service)
|
2007-04-09 23:10:00 +00:00
|
|
|
|
"Open a TCP connection for a service to a host.
|
2002-05-30 17:12:53 +00:00
|
|
|
|
Returns a subprocess-object to represent the connection.
|
|
|
|
|
Input and output work as for subprocesses; `delete-process' closes it.
|
2004-05-07 01:06:20 +00:00
|
|
|
|
|
2009-06-19 03:08:54 +00:00
|
|
|
|
NAME is the name for the process. It is modified if necessary to make
|
|
|
|
|
it unique.
|
2009-06-19 03:06:40 +00:00
|
|
|
|
BUFFER is the buffer (or buffer name) to associate with the
|
|
|
|
|
process. Process output goes at end of that buffer. BUFFER may
|
|
|
|
|
be nil, meaning that this process is not associated with any buffer.
|
|
|
|
|
HOST is the name or IP address of the host to connect to.
|
|
|
|
|
SERVICE is the name of the service desired, or an integer specifying
|
|
|
|
|
a port number to connect to.
|
|
|
|
|
|
|
|
|
|
This is a wrapper around `make-network-process', and only offers a
|
|
|
|
|
subset of its functionality."
|
2007-04-09 23:10:00 +00:00
|
|
|
|
(make-network-process :name name :buffer buffer
|
|
|
|
|
:host host :service service)))
|
2002-05-30 17:12:53 +00:00
|
|
|
|
|
|
|
|
|
;; compatibility
|
|
|
|
|
|
2007-04-09 23:10:00 +00:00
|
|
|
|
(make-obsolete
|
|
|
|
|
'process-kill-without-query
|
|
|
|
|
"use `process-query-on-exit-flag' or `set-process-query-on-exit-flag'."
|
|
|
|
|
"22.1")
|
2002-05-30 17:12:53 +00:00
|
|
|
|
(defun process-kill-without-query (process &optional flag)
|
|
|
|
|
"Say no query needed if PROCESS is running when Emacs is exited.
|
|
|
|
|
Optional second argument if non-nil says to require a query.
|
2004-05-07 01:06:20 +00:00
|
|
|
|
Value is t if a query was formerly required."
|
2002-05-30 17:12:53 +00:00
|
|
|
|
(let ((old (process-query-on-exit-flag process)))
|
|
|
|
|
(set-process-query-on-exit-flag process nil)
|
|
|
|
|
old))
|
1993-04-10 06:21:55 +00:00
|
|
|
|
|
2009-07-18 21:06:04 +00:00
|
|
|
|
(defun process-kill-buffer-query-function ()
|
|
|
|
|
"Ask before killing a buffer that has a running process."
|
|
|
|
|
(let ((process (get-buffer-process (current-buffer))))
|
|
|
|
|
(or (not process)
|
|
|
|
|
(not (memq (process-status process) '(run stop open listen)))
|
|
|
|
|
(not (process-query-on-exit-flag process))
|
|
|
|
|
(yes-or-no-p "Buffer has a running process; kill it? "))))
|
|
|
|
|
|
|
|
|
|
(add-hook 'kill-buffer-query-functions 'process-kill-buffer-query-function)
|
|
|
|
|
|
2003-01-14 09:56:10 +00:00
|
|
|
|
;; process plist management
|
|
|
|
|
|
|
|
|
|
(defun process-get (process propname)
|
|
|
|
|
"Return the value of PROCESS' PROPNAME property.
|
|
|
|
|
This is the last value stored with `(process-put PROCESS PROPNAME VALUE)'."
|
|
|
|
|
(plist-get (process-plist process) propname))
|
|
|
|
|
|
|
|
|
|
(defun process-put (process propname value)
|
|
|
|
|
"Change PROCESS' PROPNAME property to VALUE.
|
|
|
|
|
It can be retrieved with `(process-get PROCESS PROPNAME)'."
|
2003-02-04 12:29:42 +00:00
|
|
|
|
(set-process-plist process
|
2003-01-14 09:56:10 +00:00
|
|
|
|
(plist-put (process-plist process) propname value)))
|
|
|
|
|
|
1993-04-10 06:21:55 +00:00
|
|
|
|
|
|
|
|
|
;;;; Input and display facilities.
|
|
|
|
|
|
1997-07-20 17:36:48 +00:00
|
|
|
|
(defvar read-quoted-char-radix 8
|
1997-07-17 06:24:48 +00:00
|
|
|
|
"*Radix for \\[quoted-insert] and other uses of `read-quoted-char'.
|
1997-07-20 17:36:48 +00:00
|
|
|
|
Legitimate radix values are 8, 10 and 16.")
|
|
|
|
|
|
|
|
|
|
(custom-declare-variable-early
|
2002-10-17 15:42:10 +00:00
|
|
|
|
'read-quoted-char-radix 8
|
1997-07-20 17:36:48 +00:00
|
|
|
|
"*Radix for \\[quoted-insert] and other uses of `read-quoted-char'.
|
1997-07-17 06:24:48 +00:00
|
|
|
|
Legitimate radix values are 8, 10 and 16."
|
2007-04-09 23:10:00 +00:00
|
|
|
|
:type '(choice (const 8) (const 10) (const 16))
|
|
|
|
|
:group 'editing-basics)
|
1997-07-17 06:24:48 +00:00
|
|
|
|
|
2009-08-19 03:03:05 +00:00
|
|
|
|
(defconst read-key-empty-map (make-sparse-keymap))
|
|
|
|
|
|
2009-10-20 01:29:17 +00:00
|
|
|
|
(defvar read-key-delay 0.01) ;Fast enough for 100Hz repeat rate, hopefully.
|
2009-08-19 03:03:05 +00:00
|
|
|
|
|
|
|
|
|
(defun read-key (&optional prompt)
|
|
|
|
|
"Read a key from the keyboard.
|
|
|
|
|
Contrary to `read-event' this will not return a raw event but instead will
|
|
|
|
|
obey the input decoding and translations usually done by `read-key-sequence'.
|
|
|
|
|
So escape sequences and keyboard encoding are taken into account.
|
|
|
|
|
When there's an ambiguity because the key looks like the prefix of
|
|
|
|
|
some sort of escape sequence, the ambiguity is resolved via `read-key-delay'."
|
|
|
|
|
(let ((overriding-terminal-local-map read-key-empty-map)
|
|
|
|
|
(overriding-local-map nil)
|
2010-08-21 08:56:54 +00:00
|
|
|
|
(echo-keystrokes 0)
|
2009-08-19 03:03:05 +00:00
|
|
|
|
(old-global-map (current-global-map))
|
|
|
|
|
(timer (run-with-idle-timer
|
|
|
|
|
;; Wait long enough that Emacs has the time to receive and
|
|
|
|
|
;; process all the raw events associated with the single-key.
|
|
|
|
|
;; But don't wait too long, or the user may find the delay
|
|
|
|
|
;; annoying (or keep hitting more keys which may then get
|
|
|
|
|
;; lost or misinterpreted).
|
|
|
|
|
;; This is only relevant for keys which Emacs perceives as
|
|
|
|
|
;; "prefixes", such as C-x (because of the C-x 8 map in
|
|
|
|
|
;; key-translate-table and the C-x @ map in function-key-map)
|
|
|
|
|
;; or ESC (because of terminal escape sequences in
|
|
|
|
|
;; input-decode-map).
|
|
|
|
|
read-key-delay t
|
|
|
|
|
(lambda ()
|
|
|
|
|
(let ((keys (this-command-keys-vector)))
|
|
|
|
|
(unless (zerop (length keys))
|
|
|
|
|
;; `keys' is non-empty, so the user has hit at least
|
|
|
|
|
;; one key; there's no point waiting any longer, even
|
|
|
|
|
;; though read-key-sequence thinks we should wait
|
|
|
|
|
;; for more input to decide how to interpret the
|
|
|
|
|
;; current input.
|
|
|
|
|
(throw 'read-key keys)))))))
|
|
|
|
|
(unwind-protect
|
|
|
|
|
(progn
|
2010-08-19 14:37:31 +00:00
|
|
|
|
(use-global-map
|
|
|
|
|
(let ((map (make-sparse-keymap)))
|
|
|
|
|
;; Don't hide the menu-bar and tool-bar entries.
|
|
|
|
|
(define-key map [menu-bar] (lookup-key global-map [menu-bar]))
|
|
|
|
|
(define-key map [tool-bar] (lookup-key global-map [tool-bar]))
|
|
|
|
|
map))
|
2009-10-20 01:29:17 +00:00
|
|
|
|
(aref (catch 'read-key (read-key-sequence-vector prompt nil t)) 0))
|
2009-08-19 03:03:05 +00:00
|
|
|
|
(cancel-timer timer)
|
|
|
|
|
(use-global-map old-global-map))))
|
|
|
|
|
|
1993-04-10 06:21:55 +00:00
|
|
|
|
(defun read-quoted-char (&optional prompt)
|
1997-07-16 05:34:38 +00:00
|
|
|
|
"Like `read-char', but do not allow quitting.
|
|
|
|
|
Also, if the first character read is an octal digit,
|
|
|
|
|
we read any number of octal digits and return the
|
1998-02-28 19:00:34 +00:00
|
|
|
|
specified character code. Any nondigit terminates the sequence.
|
1997-07-17 06:24:48 +00:00
|
|
|
|
If the terminator is RET, it is discarded;
|
1997-07-16 05:34:38 +00:00
|
|
|
|
any other terminator is used itself as input.
|
|
|
|
|
|
1998-02-28 19:00:34 +00:00
|
|
|
|
The optional argument PROMPT specifies a string to use to prompt the user.
|
|
|
|
|
The variable `read-quoted-char-radix' controls which radix to use
|
|
|
|
|
for numeric input."
|
2003-04-03 23:13:38 +00:00
|
|
|
|
(let ((message-log-max nil) done (first t) (code 0) char translated)
|
1997-07-16 05:34:38 +00:00
|
|
|
|
(while (not done)
|
|
|
|
|
(let ((inhibit-quit first)
|
1995-06-07 20:53:07 +00:00
|
|
|
|
;; Don't let C-h get the help message--only help function keys.
|
|
|
|
|
(help-char nil)
|
|
|
|
|
(help-form
|
|
|
|
|
"Type the special character you want to use,
|
1997-07-16 05:34:38 +00:00
|
|
|
|
or the octal character code.
|
1997-07-17 06:24:48 +00:00
|
|
|
|
RET terminates the character code and is discarded;
|
1997-07-16 05:34:38 +00:00
|
|
|
|
any other non-digit terminates the character code and is then used as input."))
|
2002-10-03 18:53:43 +00:00
|
|
|
|
(setq char (read-event (and prompt (format "%s-" prompt)) t))
|
1993-04-10 06:21:55 +00:00
|
|
|
|
(if inhibit-quit (setq quit-flag nil)))
|
2002-10-03 18:53:43 +00:00
|
|
|
|
;; Translate TAB key into control-I ASCII character, and so on.
|
|
|
|
|
;; Note: `read-char' does it using the `ascii-character' property.
|
2010-05-18 20:51:12 +00:00
|
|
|
|
;; We should try and use read-key instead.
|
|
|
|
|
(let ((translation (lookup-key local-function-key-map (vector char))))
|
2010-06-17 03:37:13 +00:00
|
|
|
|
(setq translated (if (arrayp translation)
|
|
|
|
|
(aref translation 0)
|
|
|
|
|
char)))
|
|
|
|
|
(if (integerp translated)
|
|
|
|
|
(setq translated (char-resolve-modifiers translated)))
|
2003-04-03 23:13:38 +00:00
|
|
|
|
(cond ((null translated))
|
|
|
|
|
((not (integerp translated))
|
|
|
|
|
(setq unread-command-events (list char)
|
1997-07-17 06:24:48 +00:00
|
|
|
|
done t))
|
2003-04-03 23:13:38 +00:00
|
|
|
|
((/= (logand translated ?\M-\^@) 0)
|
1997-08-05 20:51:55 +00:00
|
|
|
|
;; Turn a meta-character into a character with the 0200 bit set.
|
2003-04-03 23:13:38 +00:00
|
|
|
|
(setq code (logior (logand translated (lognot ?\M-\^@)) 128)
|
1997-08-05 20:51:55 +00:00
|
|
|
|
done t))
|
2009-10-26 03:39:15 +00:00
|
|
|
|
((and (<= ?0 translated)
|
|
|
|
|
(< translated (+ ?0 (min 10 read-quoted-char-radix))))
|
2003-04-03 23:13:38 +00:00
|
|
|
|
(setq code (+ (* code read-quoted-char-radix) (- translated ?0)))
|
|
|
|
|
(and prompt (setq prompt (message "%s %c" prompt translated))))
|
|
|
|
|
((and (<= ?a (downcase translated))
|
2009-10-26 03:39:15 +00:00
|
|
|
|
(< (downcase translated)
|
|
|
|
|
(+ ?a -10 (min 36 read-quoted-char-radix))))
|
1997-07-26 22:21:49 +00:00
|
|
|
|
(setq code (+ (* code read-quoted-char-radix)
|
2003-04-03 23:13:38 +00:00
|
|
|
|
(+ 10 (- (downcase translated) ?a))))
|
|
|
|
|
(and prompt (setq prompt (message "%s %c" prompt translated))))
|
|
|
|
|
((and (not first) (eq translated ?\C-m))
|
1997-07-16 05:34:38 +00:00
|
|
|
|
(setq done t))
|
|
|
|
|
((not first)
|
2003-04-03 23:13:38 +00:00
|
|
|
|
(setq unread-command-events (list char)
|
1997-07-16 05:34:38 +00:00
|
|
|
|
done t))
|
2003-04-03 23:13:38 +00:00
|
|
|
|
(t (setq code translated
|
1997-07-16 05:34:38 +00:00
|
|
|
|
done t)))
|
|
|
|
|
(setq first nil))
|
1997-08-05 20:51:55 +00:00
|
|
|
|
code))
|
1993-04-10 06:21:55 +00:00
|
|
|
|
|
2004-10-29 21:21:33 +00:00
|
|
|
|
(defun read-passwd (prompt &optional confirm default)
|
|
|
|
|
"Read a password, prompting with PROMPT, and return it.
|
|
|
|
|
If optional CONFIRM is non-nil, read the password twice to make sure.
|
|
|
|
|
Optional DEFAULT is a default password to use instead of empty input.
|
|
|
|
|
|
|
|
|
|
This function echoes `.' for each character that the user types.
|
2008-11-16 20:02:49 +00:00
|
|
|
|
|
|
|
|
|
The user ends with RET, LFD, or ESC. DEL or C-h rubs out.
|
|
|
|
|
C-y yanks the current kill. C-u kills line.
|
2004-10-29 21:21:33 +00:00
|
|
|
|
C-g quits; if `inhibit-quit' was non-nil around this function,
|
2006-05-25 00:19:02 +00:00
|
|
|
|
then it returns nil if the user types C-g, but quit-flag remains set.
|
2004-10-29 21:21:33 +00:00
|
|
|
|
|
|
|
|
|
Once the caller uses the password, it can erase the password
|
|
|
|
|
by doing (clear-string STRING)."
|
|
|
|
|
(with-local-quit
|
|
|
|
|
(if confirm
|
|
|
|
|
(let (success)
|
|
|
|
|
(while (not success)
|
|
|
|
|
(let ((first (read-passwd prompt nil default))
|
|
|
|
|
(second (read-passwd "Confirm password: " nil default)))
|
|
|
|
|
(if (equal first second)
|
|
|
|
|
(progn
|
|
|
|
|
(and (arrayp second) (clear-string second))
|
|
|
|
|
(setq success first))
|
|
|
|
|
(and (arrayp first) (clear-string first))
|
|
|
|
|
(and (arrayp second) (clear-string second))
|
|
|
|
|
(message "Password not repeated accurately; please start over")
|
|
|
|
|
(sit-for 1))))
|
|
|
|
|
success)
|
|
|
|
|
(let ((pass nil)
|
2006-05-24 22:28:02 +00:00
|
|
|
|
;; Copy it so that add-text-properties won't modify
|
|
|
|
|
;; the object that was passed in by the caller.
|
|
|
|
|
(prompt (copy-sequence prompt))
|
2004-10-29 21:21:33 +00:00
|
|
|
|
(c 0)
|
|
|
|
|
(echo-keystrokes 0)
|
2006-04-12 19:40:56 +00:00
|
|
|
|
(cursor-in-echo-area t)
|
2008-11-16 21:02:05 +00:00
|
|
|
|
(message-log-max nil)
|
|
|
|
|
(stop-keys (list 'return ?\r ?\n ?\e))
|
|
|
|
|
(rubout-keys (list 'backspace ?\b ?\177)))
|
2005-11-19 12:49:59 +00:00
|
|
|
|
(add-text-properties 0 (length prompt)
|
|
|
|
|
minibuffer-prompt-properties prompt)
|
2004-10-29 21:21:33 +00:00
|
|
|
|
(while (progn (message "%s%s"
|
|
|
|
|
prompt
|
|
|
|
|
(make-string (length pass) ?.))
|
2009-08-19 19:42:25 +00:00
|
|
|
|
(setq c (read-key))
|
2008-11-16 21:02:05 +00:00
|
|
|
|
(not (memq c stop-keys)))
|
2004-10-29 21:21:33 +00:00
|
|
|
|
(clear-this-command-keys)
|
2008-11-16 21:02:05 +00:00
|
|
|
|
(cond ((memq c rubout-keys) ; rubout
|
|
|
|
|
(when (> (length pass) 0)
|
|
|
|
|
(let ((new-pass (substring pass 0 -1)))
|
|
|
|
|
(and (arrayp pass) (clear-string pass))
|
|
|
|
|
(setq pass new-pass))))
|
2009-08-19 19:42:25 +00:00
|
|
|
|
((eq c ?\C-g) (keyboard-quit))
|
2008-11-16 21:02:05 +00:00
|
|
|
|
((not (numberp c)))
|
|
|
|
|
((= c ?\C-u) ; kill line
|
2008-11-16 20:02:49 +00:00
|
|
|
|
(and (arrayp pass) (clear-string pass))
|
|
|
|
|
(setq pass ""))
|
|
|
|
|
((= c ?\C-y) ; yank
|
|
|
|
|
(let* ((str (condition-case nil
|
|
|
|
|
(current-kill 0)
|
|
|
|
|
(error nil)))
|
|
|
|
|
new-pass)
|
|
|
|
|
(when str
|
|
|
|
|
(setq new-pass
|
|
|
|
|
(concat pass
|
|
|
|
|
(substring-no-properties str)))
|
|
|
|
|
(and (arrayp pass) (clear-string pass))
|
|
|
|
|
(setq c ?\0)
|
|
|
|
|
(setq pass new-pass))))
|
2008-11-16 21:02:05 +00:00
|
|
|
|
((characterp c) ; insert char
|
2008-11-16 20:02:49 +00:00
|
|
|
|
(let* ((new-char (char-to-string c))
|
|
|
|
|
(new-pass (concat pass new-char)))
|
|
|
|
|
(and (arrayp pass) (clear-string pass))
|
|
|
|
|
(clear-string new-char)
|
|
|
|
|
(setq c ?\0)
|
|
|
|
|
(setq pass new-pass)))))
|
2004-10-29 21:21:33 +00:00
|
|
|
|
(message nil)
|
|
|
|
|
(or pass default "")))))
|
|
|
|
|
|
2004-04-16 12:51:06 +00:00
|
|
|
|
;; This should be used by `call-interactively' for `n' specs.
|
|
|
|
|
(defun read-number (prompt &optional default)
|
2007-04-21 08:55:41 +00:00
|
|
|
|
"Read a numeric value in the minibuffer, prompting with PROMPT.
|
|
|
|
|
DEFAULT specifies a default value to return if the user just types RET.
|
|
|
|
|
The value of DEFAULT is inserted into PROMPT."
|
2004-04-16 12:51:06 +00:00
|
|
|
|
(let ((n nil))
|
|
|
|
|
(when default
|
|
|
|
|
(setq prompt
|
2004-06-02 22:44:45 +00:00
|
|
|
|
(if (string-match "\\(\\):[ \t]*\\'" prompt)
|
|
|
|
|
(replace-match (format " (default %s)" default) t t prompt 1)
|
|
|
|
|
(replace-regexp-in-string "[ \t]*\\'"
|
|
|
|
|
(format " (default %s) " default)
|
2004-06-07 20:54:42 +00:00
|
|
|
|
prompt t t))))
|
2004-04-16 12:51:06 +00:00
|
|
|
|
(while
|
|
|
|
|
(progn
|
|
|
|
|
(let ((str (read-from-minibuffer prompt nil nil nil nil
|
2004-04-20 20:40:41 +00:00
|
|
|
|
(and default
|
|
|
|
|
(number-to-string default)))))
|
2007-04-22 16:56:19 +00:00
|
|
|
|
(condition-case nil
|
|
|
|
|
(setq n (cond
|
|
|
|
|
((zerop (length str)) default)
|
|
|
|
|
((stringp str) (read str))))
|
|
|
|
|
(error nil)))
|
2004-04-16 12:51:06 +00:00
|
|
|
|
(unless (numberp n)
|
|
|
|
|
(message "Please enter a number.")
|
|
|
|
|
(sit-for 1)
|
|
|
|
|
t)))
|
|
|
|
|
n))
|
2006-07-10 18:52:13 +00:00
|
|
|
|
|
|
|
|
|
(defun sit-for (seconds &optional nodisp obsolete)
|
|
|
|
|
"Perform redisplay, then wait for SECONDS seconds or until input is available.
|
|
|
|
|
SECONDS may be a floating-point value.
|
|
|
|
|
\(On operating systems that do not support waiting for fractions of a
|
|
|
|
|
second, floating-point values are rounded down to the nearest integer.)
|
|
|
|
|
|
|
|
|
|
If optional arg NODISP is t, don't redisplay, just wait for input.
|
|
|
|
|
Redisplay does not happen if input is available before it starts.
|
|
|
|
|
|
|
|
|
|
Value is t if waited the full time with no input arriving, and nil otherwise.
|
|
|
|
|
|
2006-07-11 00:17:43 +00:00
|
|
|
|
An obsolete, but still supported form is
|
2006-07-10 18:52:13 +00:00
|
|
|
|
\(sit-for SECONDS &optional MILLISECONDS NODISP)
|
2006-07-11 00:17:43 +00:00
|
|
|
|
where the optional arg MILLISECONDS specifies an additional wait period,
|
2006-07-10 18:52:13 +00:00
|
|
|
|
in milliseconds; this was useful when Emacs was built without
|
2009-10-16 03:21:18 +00:00
|
|
|
|
floating point support."
|
2008-02-21 08:13:45 +00:00
|
|
|
|
(if (numberp nodisp)
|
|
|
|
|
(setq seconds (+ seconds (* 1e-3 nodisp))
|
|
|
|
|
nodisp obsolete)
|
|
|
|
|
(if obsolete (setq nodisp obsolete)))
|
2006-09-11 22:21:55 +00:00
|
|
|
|
(cond
|
|
|
|
|
(noninteractive
|
|
|
|
|
(sleep-for seconds)
|
|
|
|
|
t)
|
|
|
|
|
((input-pending-p)
|
|
|
|
|
nil)
|
|
|
|
|
((<= seconds 0)
|
|
|
|
|
(or nodisp (redisplay)))
|
|
|
|
|
(t
|
|
|
|
|
(or nodisp (redisplay))
|
|
|
|
|
(let ((read (read-event nil nil seconds)))
|
|
|
|
|
(or (null read)
|
2006-10-22 22:32:53 +00:00
|
|
|
|
(progn
|
|
|
|
|
;; If last command was a prefix arg, e.g. C-u, push this event onto
|
|
|
|
|
;; unread-command-events as (t . EVENT) so it will be added to
|
|
|
|
|
;; this-command-keys by read-key-sequence.
|
|
|
|
|
(if (eq overriding-terminal-local-map universal-argument-map)
|
|
|
|
|
(setq read (cons t read)))
|
|
|
|
|
(push read unread-command-events)
|
|
|
|
|
nil))))))
|
2010-09-14 11:11:44 +00:00
|
|
|
|
(set-advertised-calling-convention 'sit-for '(seconds &optional nodisp) "22.1")
|
1997-12-21 00:50:07 +00:00
|
|
|
|
|
2002-04-19 00:06:54 +00:00
|
|
|
|
;;; Atomic change groups.
|
|
|
|
|
|
2002-02-06 15:20:36 +00:00
|
|
|
|
(defmacro atomic-change-group (&rest body)
|
|
|
|
|
"Perform BODY as an atomic change group.
|
|
|
|
|
This means that if BODY exits abnormally,
|
|
|
|
|
all of its changes to the current buffer are undone.
|
2002-08-02 17:59:22 +00:00
|
|
|
|
This works regardless of whether undo is enabled in the buffer.
|
2002-02-06 15:20:36 +00:00
|
|
|
|
|
|
|
|
|
This mechanism is transparent to ordinary use of undo;
|
|
|
|
|
if undo is enabled in the buffer and BODY succeeds, the
|
|
|
|
|
user can undo the change normally."
|
2005-12-03 02:31:40 +00:00
|
|
|
|
(declare (indent 0) (debug t))
|
2002-02-06 15:20:36 +00:00
|
|
|
|
(let ((handle (make-symbol "--change-group-handle--"))
|
|
|
|
|
(success (make-symbol "--change-group-success--")))
|
|
|
|
|
`(let ((,handle (prepare-change-group))
|
2008-01-11 14:44:15 +00:00
|
|
|
|
;; Don't truncate any undo data in the middle of this.
|
|
|
|
|
(undo-outer-limit nil)
|
|
|
|
|
(undo-limit most-positive-fixnum)
|
|
|
|
|
(undo-strong-limit most-positive-fixnum)
|
2002-02-06 15:20:36 +00:00
|
|
|
|
(,success nil))
|
|
|
|
|
(unwind-protect
|
|
|
|
|
(progn
|
|
|
|
|
;; This is inside the unwind-protect because
|
|
|
|
|
;; it enables undo if that was disabled; we need
|
|
|
|
|
;; to make sure that it gets disabled again.
|
|
|
|
|
(activate-change-group ,handle)
|
|
|
|
|
,@body
|
|
|
|
|
(setq ,success t))
|
|
|
|
|
;; Either of these functions will disable undo
|
|
|
|
|
;; if it was disabled before.
|
|
|
|
|
(if ,success
|
|
|
|
|
(accept-change-group ,handle)
|
|
|
|
|
(cancel-change-group ,handle))))))
|
|
|
|
|
|
2003-05-18 15:04:24 +00:00
|
|
|
|
(defun prepare-change-group (&optional buffer)
|
2002-02-06 15:20:36 +00:00
|
|
|
|
"Return a handle for the current buffer's state, for a change group.
|
2003-05-18 15:04:24 +00:00
|
|
|
|
If you specify BUFFER, make a handle for BUFFER's state instead.
|
2002-02-06 15:20:36 +00:00
|
|
|
|
|
|
|
|
|
Pass the handle to `activate-change-group' afterward to initiate
|
|
|
|
|
the actual changes of the change group.
|
|
|
|
|
|
|
|
|
|
To finish the change group, call either `accept-change-group' or
|
|
|
|
|
`cancel-change-group' passing the same handle as argument. Call
|
|
|
|
|
`accept-change-group' to accept the changes in the group as final;
|
|
|
|
|
call `cancel-change-group' to undo them all. You should use
|
|
|
|
|
`unwind-protect' to make sure the group is always finished. The call
|
|
|
|
|
to `activate-change-group' should be inside the `unwind-protect'.
|
|
|
|
|
Once you finish the group, don't use the handle again--don't try to
|
|
|
|
|
finish the same group twice. For a simple example of correct use, see
|
|
|
|
|
the source code of `atomic-change-group'.
|
|
|
|
|
|
|
|
|
|
The handle records only the specified buffer. To make a multibuffer
|
|
|
|
|
change group, call this function once for each buffer you want to
|
|
|
|
|
cover, then use `nconc' to combine the returned values, like this:
|
|
|
|
|
|
|
|
|
|
(nconc (prepare-change-group buffer-1)
|
|
|
|
|
(prepare-change-group buffer-2))
|
|
|
|
|
|
|
|
|
|
You can then activate that multibuffer change group with a single
|
|
|
|
|
call to `activate-change-group' and finish it with a single call
|
|
|
|
|
to `accept-change-group' or `cancel-change-group'."
|
|
|
|
|
|
2003-05-18 15:04:24 +00:00
|
|
|
|
(if buffer
|
|
|
|
|
(list (cons buffer (with-current-buffer buffer buffer-undo-list)))
|
|
|
|
|
(list (cons (current-buffer) buffer-undo-list))))
|
2002-02-06 15:20:36 +00:00
|
|
|
|
|
|
|
|
|
(defun activate-change-group (handle)
|
|
|
|
|
"Activate a change group made with `prepare-change-group' (which see)."
|
|
|
|
|
(dolist (elt handle)
|
|
|
|
|
(with-current-buffer (car elt)
|
|
|
|
|
(if (eq buffer-undo-list t)
|
|
|
|
|
(setq buffer-undo-list nil)))))
|
|
|
|
|
|
|
|
|
|
(defun accept-change-group (handle)
|
|
|
|
|
"Finish a change group made with `prepare-change-group' (which see).
|
|
|
|
|
This finishes the change group by accepting its changes as final."
|
|
|
|
|
(dolist (elt handle)
|
|
|
|
|
(with-current-buffer (car elt)
|
|
|
|
|
(if (eq elt t)
|
|
|
|
|
(setq buffer-undo-list t)))))
|
|
|
|
|
|
|
|
|
|
(defun cancel-change-group (handle)
|
|
|
|
|
"Finish a change group made with `prepare-change-group' (which see).
|
|
|
|
|
This finishes the change group by reverting all of its changes."
|
|
|
|
|
(dolist (elt handle)
|
|
|
|
|
(with-current-buffer (car elt)
|
|
|
|
|
(setq elt (cdr elt))
|
2008-09-07 09:16:56 +00:00
|
|
|
|
(save-restriction
|
|
|
|
|
;; Widen buffer temporarily so if the buffer was narrowed within
|
|
|
|
|
;; the body of `atomic-change-group' all changes can be undone.
|
|
|
|
|
(widen)
|
|
|
|
|
(let ((old-car
|
|
|
|
|
(if (consp elt) (car elt)))
|
|
|
|
|
(old-cdr
|
|
|
|
|
(if (consp elt) (cdr elt))))
|
|
|
|
|
;; Temporarily truncate the undo log at ELT.
|
|
|
|
|
(when (consp elt)
|
|
|
|
|
(setcar elt nil) (setcdr elt nil))
|
|
|
|
|
(unless (eq last-command 'undo) (undo-start))
|
|
|
|
|
;; Make sure there's no confusion.
|
|
|
|
|
(when (and (consp elt) (not (eq elt (last pending-undo-list))))
|
|
|
|
|
(error "Undoing to some unrelated state"))
|
|
|
|
|
;; Undo it all.
|
|
|
|
|
(save-excursion
|
|
|
|
|
(while (listp pending-undo-list) (undo-more 1)))
|
|
|
|
|
;; Reset the modified cons cell ELT to its original content.
|
|
|
|
|
(when (consp elt)
|
|
|
|
|
(setcar elt old-car)
|
|
|
|
|
(setcdr elt old-cdr))
|
|
|
|
|
;; Revert the undo info to what it was when we grabbed the state.
|
|
|
|
|
(setq buffer-undo-list elt))))))
|
2002-02-06 15:20:36 +00:00
|
|
|
|
|
2005-10-22 15:01:08 +00:00
|
|
|
|
;;;; Display-related functions.
|
|
|
|
|
|
2002-04-01 12:03:14 +00:00
|
|
|
|
;; For compatibility.
|
|
|
|
|
(defalias 'redraw-modeline 'force-mode-line-update)
|
|
|
|
|
|
1993-04-10 06:21:55 +00:00
|
|
|
|
(defun force-mode-line-update (&optional all)
|
2004-04-16 12:51:06 +00:00
|
|
|
|
"Force redisplay of the current buffer's mode line and header line.
|
|
|
|
|
With optional non-nil ALL, force redisplay of all mode lines and
|
|
|
|
|
header lines. This function also forces recomputation of the
|
|
|
|
|
menu bar menus and the frame title."
|
2009-08-19 03:03:05 +00:00
|
|
|
|
(if all (with-current-buffer (other-buffer)))
|
1993-04-10 06:21:55 +00:00
|
|
|
|
(set-buffer-modified-p (buffer-modified-p)))
|
|
|
|
|
|
2001-11-28 04:03:53 +00:00
|
|
|
|
(defun momentary-string-display (string pos &optional exit-char message)
|
1990-11-05 10:06:02 +00:00
|
|
|
|
"Momentarily display STRING in the buffer at POS.
|
2004-04-27 13:07:16 +00:00
|
|
|
|
Display remains until next event is input.
|
2007-01-02 23:49:25 +00:00
|
|
|
|
If POS is a marker, only its position is used; its buffer is ignored.
|
2004-04-27 13:07:16 +00:00
|
|
|
|
Optional third arg EXIT-CHAR can be a character, event or event
|
|
|
|
|
description list. EXIT-CHAR defaults to SPC. If the input is
|
|
|
|
|
EXIT-CHAR it is swallowed; otherwise it is then available as
|
|
|
|
|
input (as a command if nothing else).
|
1990-11-05 10:06:02 +00:00
|
|
|
|
Display MESSAGE (optional fourth arg) in the echo area.
|
|
|
|
|
If MESSAGE is nil, instructions to type EXIT-CHAR are displayed there."
|
2006-11-27 14:05:58 +00:00
|
|
|
|
(or exit-char (setq exit-char ?\s))
|
2008-06-10 16:12:18 +00:00
|
|
|
|
(let ((ol (make-overlay pos pos))
|
2010-03-03 03:58:26 +00:00
|
|
|
|
(str (copy-sequence string)))
|
1990-11-05 10:06:02 +00:00
|
|
|
|
(unwind-protect
|
2008-06-10 16:12:18 +00:00
|
|
|
|
(progn
|
|
|
|
|
(save-excursion
|
2010-03-03 03:58:26 +00:00
|
|
|
|
(overlay-put ol 'after-string str)
|
2008-06-10 16:12:18 +00:00
|
|
|
|
(goto-char pos)
|
|
|
|
|
;; To avoid trouble with out-of-bounds position
|
|
|
|
|
(setq pos (point))
|
2010-03-03 03:58:26 +00:00
|
|
|
|
;; If the string end is off screen, recenter now.
|
2008-06-10 16:12:18 +00:00
|
|
|
|
(if (<= (window-end nil t) pos)
|
|
|
|
|
(recenter (/ (window-height) 2))))
|
|
|
|
|
(message (or message "Type %s to continue editing.")
|
|
|
|
|
(single-key-description exit-char))
|
2010-05-31 14:11:18 +00:00
|
|
|
|
(let ((event (read-event)))
|
|
|
|
|
;; `exit-char' can be an event, or an event description list.
|
|
|
|
|
(or (eq event exit-char)
|
|
|
|
|
(eq event (event-convert-list exit-char))
|
|
|
|
|
(setq unread-command-events (list event)))))
|
2008-06-10 16:12:18 +00:00
|
|
|
|
(delete-overlay ol))))
|
1990-11-05 10:06:02 +00:00
|
|
|
|
|
1993-04-10 06:21:55 +00:00
|
|
|
|
|
2001-11-28 04:03:53 +00:00
|
|
|
|
;;;; Overlay operations
|
|
|
|
|
|
|
|
|
|
(defun copy-overlay (o)
|
|
|
|
|
"Return a copy of overlay O."
|
2010-02-11 19:35:36 +00:00
|
|
|
|
(let ((o1 (if (overlay-buffer o)
|
|
|
|
|
(make-overlay (overlay-start o) (overlay-end o)
|
|
|
|
|
;; FIXME: there's no easy way to find the
|
|
|
|
|
;; insertion-type of the two markers.
|
|
|
|
|
(overlay-buffer o))
|
|
|
|
|
(let ((o1 (make-overlay (point-min) (point-min))))
|
|
|
|
|
(delete-overlay o1)
|
2010-02-11 19:37:11 +00:00
|
|
|
|
o1)))
|
2001-11-28 04:03:53 +00:00
|
|
|
|
(props (overlay-properties o)))
|
|
|
|
|
(while props
|
|
|
|
|
(overlay-put o1 (pop props) (pop props)))
|
|
|
|
|
o1))
|
|
|
|
|
|
2004-04-27 21:00:31 +00:00
|
|
|
|
(defun remove-overlays (&optional beg end name val)
|
2001-11-28 04:03:53 +00:00
|
|
|
|
"Clear BEG and END of overlays whose property NAME has value VAL.
|
2004-05-09 22:15:14 +00:00
|
|
|
|
Overlays might be moved and/or split.
|
|
|
|
|
BEG and END default respectively to the beginning and end of buffer."
|
2006-11-08 17:31:46 +00:00
|
|
|
|
;; This speeds up the loops over overlays.
|
2004-04-27 21:00:31 +00:00
|
|
|
|
(unless beg (setq beg (point-min)))
|
|
|
|
|
(unless end (setq end (point-max)))
|
2006-11-12 19:55:58 +00:00
|
|
|
|
(overlay-recenter end)
|
2001-11-28 04:03:53 +00:00
|
|
|
|
(if (< end beg)
|
|
|
|
|
(setq beg (prog1 end (setq end beg))))
|
|
|
|
|
(save-excursion
|
|
|
|
|
(dolist (o (overlays-in beg end))
|
|
|
|
|
(when (eq (overlay-get o name) val)
|
|
|
|
|
;; Either push this overlay outside beg...end
|
|
|
|
|
;; or split it to exclude beg...end
|
|
|
|
|
;; or delete it entirely (if it is contained in beg...end).
|
|
|
|
|
(if (< (overlay-start o) beg)
|
|
|
|
|
(if (> (overlay-end o) end)
|
|
|
|
|
(progn
|
|
|
|
|
(move-overlay (copy-overlay o)
|
|
|
|
|
(overlay-start o) beg)
|
|
|
|
|
(move-overlay o end (overlay-end o)))
|
|
|
|
|
(move-overlay o (overlay-start o) beg))
|
|
|
|
|
(if (> (overlay-end o) end)
|
|
|
|
|
(move-overlay o end (overlay-end o))
|
|
|
|
|
(delete-overlay o)))))))
|
2002-01-23 17:46:44 +00:00
|
|
|
|
|
1993-04-10 06:21:55 +00:00
|
|
|
|
;;;; Miscellanea.
|
|
|
|
|
|
1998-02-04 21:04:41 +00:00
|
|
|
|
(defvar suspend-hook nil
|
|
|
|
|
"Normal hook run by `suspend-emacs', before suspending.")
|
|
|
|
|
|
|
|
|
|
(defvar suspend-resume-hook nil
|
|
|
|
|
"Normal hook run by `suspend-emacs', after Emacs is continued.")
|
|
|
|
|
|
2001-12-16 18:36:50 +00:00
|
|
|
|
(defvar temp-buffer-show-hook nil
|
|
|
|
|
"Normal hook run by `with-output-to-temp-buffer' after displaying the buffer.
|
|
|
|
|
When the hook runs, the temporary buffer is current, and the window it
|
2008-08-23 03:02:23 +00:00
|
|
|
|
was displayed in is selected.")
|
2001-12-16 18:36:50 +00:00
|
|
|
|
|
|
|
|
|
(defvar temp-buffer-setup-hook nil
|
|
|
|
|
"Normal hook run by `with-output-to-temp-buffer' at the start.
|
|
|
|
|
When the hook runs, the temporary buffer is current.
|
|
|
|
|
This hook is normally set up with a function to put the buffer in Help
|
|
|
|
|
mode.")
|
|
|
|
|
|
1994-12-25 22:20:06 +00:00
|
|
|
|
;; Avoid compiler warnings about this variable,
|
|
|
|
|
;; which has a special meaning on certain system types.
|
|
|
|
|
(defvar buffer-file-type nil
|
|
|
|
|
"Non-nil if the visited file is a binary file.
|
|
|
|
|
This variable is meaningful on MS-DOG and Windows NT.
|
|
|
|
|
On those systems, it is automatically local in every buffer.
|
|
|
|
|
On other systems, this variable is normally always nil.")
|
2006-01-30 19:55:29 +00:00
|
|
|
|
|
|
|
|
|
;; The `assert' macro from the cl package signals
|
|
|
|
|
;; `cl-assertion-failed' at runtime so always define it.
|
|
|
|
|
(put 'cl-assertion-failed 'error-conditions '(error))
|
2009-11-11 05:49:09 +00:00
|
|
|
|
(put 'cl-assertion-failed 'error-message (purecopy "Assertion failed"))
|
2006-01-30 19:55:29 +00:00
|
|
|
|
|
2007-06-13 00:03:28 +00:00
|
|
|
|
(defconst user-emacs-directory
|
|
|
|
|
(if (eq system-type 'ms-dos)
|
|
|
|
|
;; MS-DOS cannot have initial dot.
|
|
|
|
|
"~/_emacs.d/"
|
|
|
|
|
"~/.emacs.d/")
|
|
|
|
|
"Directory beneath which additional per-user Emacs-specific files are placed.
|
|
|
|
|
Various programs in Emacs store information in this directory.
|
2008-10-24 09:39:27 +00:00
|
|
|
|
Note that this should end with a directory separator.
|
|
|
|
|
See also `locate-user-emacs-file'.")
|
|
|
|
|
|
|
|
|
|
(defun locate-user-emacs-file (new-name &optional old-name)
|
|
|
|
|
"Return an absolute per-user Emacs-specific file name.
|
|
|
|
|
If OLD-NAME is non-nil and ~/OLD-NAME exists, return ~/OLD-NAME.
|
|
|
|
|
Else return NEW-NAME in `user-emacs-directory', creating the
|
|
|
|
|
directory if it does not exist."
|
|
|
|
|
(convert-standard-filename
|
|
|
|
|
(let* ((home (concat "~" (or init-file-user "")))
|
|
|
|
|
(at-home (and old-name (expand-file-name old-name home))))
|
|
|
|
|
(if (and at-home (file-readable-p at-home))
|
|
|
|
|
at-home
|
2008-10-28 11:35:02 +00:00
|
|
|
|
;; Make sure `user-emacs-directory' exists,
|
|
|
|
|
;; unless we're in batch mode or dumping Emacs
|
|
|
|
|
(or noninteractive
|
|
|
|
|
purify-flag
|
|
|
|
|
(file-accessible-directory-p (directory-file-name user-emacs-directory))
|
|
|
|
|
(make-directory user-emacs-directory))
|
2009-08-19 03:03:05 +00:00
|
|
|
|
(abbreviate-file-name
|
|
|
|
|
(expand-file-name new-name user-emacs-directory))))))
|
2007-06-13 00:03:28 +00:00
|
|
|
|
|
2005-10-22 15:01:08 +00:00
|
|
|
|
|
|
|
|
|
;;;; Misc. useful functions.
|
1994-12-25 22:20:06 +00:00
|
|
|
|
|
2005-10-22 15:01:08 +00:00
|
|
|
|
(defun find-tag-default ()
|
|
|
|
|
"Determine default tag to search for, based on text at point.
|
|
|
|
|
If there is no plausible default, return nil."
|
2008-01-26 17:07:59 +00:00
|
|
|
|
(let (from to bound)
|
|
|
|
|
(when (or (progn
|
|
|
|
|
;; Look at text around `point'.
|
|
|
|
|
(save-excursion
|
|
|
|
|
(skip-syntax-backward "w_") (setq from (point)))
|
|
|
|
|
(save-excursion
|
|
|
|
|
(skip-syntax-forward "w_") (setq to (point)))
|
|
|
|
|
(> to from))
|
|
|
|
|
;; Look between `line-beginning-position' and `point'.
|
|
|
|
|
(save-excursion
|
|
|
|
|
(and (setq bound (line-beginning-position))
|
|
|
|
|
(skip-syntax-backward "^w_" bound)
|
|
|
|
|
(> (setq to (point)) bound)
|
|
|
|
|
(skip-syntax-backward "w_")
|
|
|
|
|
(setq from (point))))
|
|
|
|
|
;; Look between `point' and `line-end-position'.
|
|
|
|
|
(save-excursion
|
|
|
|
|
(and (setq bound (line-end-position))
|
|
|
|
|
(skip-syntax-forward "^w_" bound)
|
|
|
|
|
(< (setq from (point)) bound)
|
|
|
|
|
(skip-syntax-forward "w_")
|
|
|
|
|
(setq to (point)))))
|
|
|
|
|
(buffer-substring-no-properties from to))))
|
1996-02-08 10:04:55 +00:00
|
|
|
|
|
2005-10-22 15:01:08 +00:00
|
|
|
|
(defun play-sound (sound)
|
|
|
|
|
"SOUND is a list of the form `(sound KEYWORD VALUE...)'.
|
|
|
|
|
The following keywords are recognized:
|
1993-04-10 06:21:55 +00:00
|
|
|
|
|
2005-10-22 15:01:08 +00:00
|
|
|
|
:file FILE - read sound data from FILE. If FILE isn't an
|
|
|
|
|
absolute file name, it is searched in `data-directory'.
|
1993-04-10 06:21:55 +00:00
|
|
|
|
|
2005-10-22 15:01:08 +00:00
|
|
|
|
:data DATA - read sound data from string DATA.
|
|
|
|
|
|
|
|
|
|
Exactly one of :file or :data must be present.
|
|
|
|
|
|
|
|
|
|
:volume VOL - set volume to VOL. VOL must an integer in the
|
|
|
|
|
range 0..100 or a float in the range 0..1.0. If not specified,
|
|
|
|
|
don't change the volume setting of the sound device.
|
1993-04-10 06:21:55 +00:00
|
|
|
|
|
2005-10-22 15:01:08 +00:00
|
|
|
|
:device DEVICE - play sound on DEVICE. If not specified,
|
2009-01-12 20:34:48 +00:00
|
|
|
|
a system-dependent default device name is used.
|
|
|
|
|
|
|
|
|
|
Note: :data and :device are currently not supported on Windows."
|
2005-10-22 15:01:08 +00:00
|
|
|
|
(if (fboundp 'play-sound-internal)
|
|
|
|
|
(play-sound-internal sound)
|
|
|
|
|
(error "This Emacs binary lacks sound support")))
|
1993-04-10 06:21:55 +00:00
|
|
|
|
|
2007-11-19 00:09:48 +00:00
|
|
|
|
(declare-function w32-shell-dos-semantics "w32-fns" nil)
|
|
|
|
|
|
2005-10-22 15:01:08 +00:00
|
|
|
|
(defun shell-quote-argument (argument)
|
2009-01-12 20:34:48 +00:00
|
|
|
|
"Quote ARGUMENT for passing as argument to an inferior shell."
|
2006-09-25 23:03:39 +00:00
|
|
|
|
(if (or (eq system-type 'ms-dos)
|
|
|
|
|
(and (eq system-type 'windows-nt) (w32-shell-dos-semantics)))
|
2005-10-22 15:01:08 +00:00
|
|
|
|
;; Quote using double quotes, but escape any existing quotes in
|
|
|
|
|
;; the argument with backslashes.
|
|
|
|
|
(let ((result "")
|
|
|
|
|
(start 0)
|
|
|
|
|
end)
|
|
|
|
|
(if (or (null (string-match "[^\"]" argument))
|
|
|
|
|
(< (match-end 0) (length argument)))
|
|
|
|
|
(while (string-match "[\"]" argument start)
|
|
|
|
|
(setq end (match-beginning 0)
|
|
|
|
|
result (concat result (substring argument start end)
|
|
|
|
|
"\\" (substring argument end (1+ end)))
|
|
|
|
|
start (1+ end))))
|
|
|
|
|
(concat "\"" result (substring argument start) "\""))
|
2006-09-25 23:03:39 +00:00
|
|
|
|
(if (equal argument "")
|
|
|
|
|
"''"
|
|
|
|
|
;; Quote everything except POSIX filename characters.
|
|
|
|
|
;; This should be safe enough even for really weird shells.
|
|
|
|
|
(let ((result "") (start 0) end)
|
|
|
|
|
(while (string-match "[^-0-9a-zA-Z_./]" argument start)
|
|
|
|
|
(setq end (match-beginning 0)
|
|
|
|
|
result (concat result (substring argument start end)
|
|
|
|
|
"\\" (substring argument end (1+ end)))
|
|
|
|
|
start (1+ end)))
|
|
|
|
|
(concat result (substring argument start))))))
|
2006-04-06 19:20:38 +00:00
|
|
|
|
|
|
|
|
|
(defun string-or-null-p (object)
|
|
|
|
|
"Return t if OBJECT is a string or nil.
|
|
|
|
|
Otherwise, return nil."
|
|
|
|
|
(or (stringp object) (null object)))
|
|
|
|
|
|
2006-04-29 13:56:19 +00:00
|
|
|
|
(defun booleanp (object)
|
|
|
|
|
"Return non-nil if OBJECT is one of the two canonical boolean values: t or nil."
|
|
|
|
|
(memq object '(nil t)))
|
|
|
|
|
|
2006-05-10 01:58:37 +00:00
|
|
|
|
(defun field-at-pos (pos)
|
2009-01-12 20:34:48 +00:00
|
|
|
|
"Return the field at position POS, taking stickiness etc into account."
|
2006-05-10 00:32:34 +00:00
|
|
|
|
(let ((raw-field (get-char-property (field-beginning pos) 'field)))
|
|
|
|
|
(if (eq raw-field 'boundary)
|
|
|
|
|
(get-char-property (1- (field-end pos)) 'field)
|
|
|
|
|
raw-field)))
|
|
|
|
|
|
2005-10-22 15:01:08 +00:00
|
|
|
|
|
|
|
|
|
;;;; Support for yanking and text properties.
|
1993-04-10 06:21:55 +00:00
|
|
|
|
|
2002-04-19 00:06:54 +00:00
|
|
|
|
(defvar yank-excluded-properties)
|
|
|
|
|
|
2002-04-29 21:06:51 +00:00
|
|
|
|
(defun remove-yank-excluded-properties (start end)
|
|
|
|
|
"Remove `yank-excluded-properties' between START and END positions.
|
|
|
|
|
Replaces `category' properties with their defined properties."
|
|
|
|
|
(let ((inhibit-read-only t))
|
2010-02-20 08:59:16 +00:00
|
|
|
|
;; Replace any `category' property with the properties it stands
|
|
|
|
|
;; for. This is to remove `mouse-face' properties that are placed
|
|
|
|
|
;; on categories in *Help* buffers' buttons. See
|
|
|
|
|
;; http://lists.gnu.org/archive/html/emacs-devel/2002-04/msg00648.html
|
|
|
|
|
;; for the details.
|
2002-04-29 21:06:51 +00:00
|
|
|
|
(unless (memq yank-excluded-properties '(t nil))
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char start)
|
|
|
|
|
(while (< (point) end)
|
|
|
|
|
(let ((cat (get-text-property (point) 'category))
|
|
|
|
|
run-end)
|
|
|
|
|
(setq run-end
|
|
|
|
|
(next-single-property-change (point) 'category nil end))
|
2002-09-29 03:31:15 +00:00
|
|
|
|
(when cat
|
|
|
|
|
(let (run-end2 original)
|
|
|
|
|
(remove-list-of-text-properties (point) run-end '(category))
|
|
|
|
|
(while (< (point) run-end)
|
|
|
|
|
(setq run-end2 (next-property-change (point) nil run-end))
|
|
|
|
|
(setq original (text-properties-at (point)))
|
|
|
|
|
(set-text-properties (point) run-end2 (symbol-plist cat))
|
|
|
|
|
(add-text-properties (point) run-end2 original)
|
|
|
|
|
(goto-char run-end2))))
|
|
|
|
|
(goto-char run-end)))))
|
2002-04-29 21:06:51 +00:00
|
|
|
|
(if (eq yank-excluded-properties t)
|
|
|
|
|
(set-text-properties start end nil)
|
2002-09-29 03:31:15 +00:00
|
|
|
|
(remove-list-of-text-properties start end yank-excluded-properties))))
|
2002-04-29 21:06:51 +00:00
|
|
|
|
|
2003-01-18 23:35:06 +00:00
|
|
|
|
(defvar yank-undo-function)
|
|
|
|
|
|
|
|
|
|
(defun insert-for-yank (string)
|
2004-04-16 12:51:06 +00:00
|
|
|
|
"Calls `insert-for-yank-1' repetitively for each `yank-handler' segment.
|
|
|
|
|
|
|
|
|
|
See `insert-for-yank-1' for more details."
|
|
|
|
|
(let (to)
|
|
|
|
|
(while (setq to (next-single-property-change 0 'yank-handler string))
|
|
|
|
|
(insert-for-yank-1 (substring string 0 to))
|
|
|
|
|
(setq string (substring string to))))
|
|
|
|
|
(insert-for-yank-1 string))
|
|
|
|
|
|
|
|
|
|
(defun insert-for-yank-1 (string)
|
2003-01-18 23:35:06 +00:00
|
|
|
|
"Insert STRING at point, stripping some text properties.
|
2004-04-16 12:51:06 +00:00
|
|
|
|
|
2003-01-18 23:35:06 +00:00
|
|
|
|
Strip text properties from the inserted text according to
|
|
|
|
|
`yank-excluded-properties'. Otherwise just like (insert STRING).
|
|
|
|
|
|
2003-01-21 21:10:40 +00:00
|
|
|
|
If STRING has a non-nil `yank-handler' property on the first character,
|
2005-06-10 14:06:47 +00:00
|
|
|
|
the normal insert behavior is modified in various ways. The value of
|
2005-08-17 14:08:30 +00:00
|
|
|
|
the yank-handler property must be a list with one to four elements
|
2003-01-27 21:45:10 +00:00
|
|
|
|
with the following format: (FUNCTION PARAM NOEXCLUDE UNDO).
|
2003-01-18 23:35:06 +00:00
|
|
|
|
When FUNCTION is present and non-nil, it is called instead of `insert'
|
|
|
|
|
to insert the string. FUNCTION takes one argument--the object to insert.
|
|
|
|
|
If PARAM is present and non-nil, it replaces STRING as the object
|
|
|
|
|
passed to FUNCTION (or `insert'); for example, if FUNCTION is
|
|
|
|
|
`yank-rectangle', PARAM may be a list of strings to insert as a
|
|
|
|
|
rectangle.
|
|
|
|
|
If NOEXCLUDE is present and non-nil, the normal removal of the
|
|
|
|
|
yank-excluded-properties is not performed; instead FUNCTION is
|
|
|
|
|
responsible for removing those properties. This may be necessary
|
|
|
|
|
if FUNCTION adjusts point before or after inserting the object.
|
|
|
|
|
If UNDO is present and non-nil, it is a function that will be called
|
|
|
|
|
by `yank-pop' to undo the insertion of the current object. It is
|
2003-02-04 12:29:42 +00:00
|
|
|
|
called with two arguments, the start and end of the current region.
|
2003-01-27 21:45:10 +00:00
|
|
|
|
FUNCTION may set `yank-undo-function' to override the UNDO value."
|
2003-01-19 01:07:34 +00:00
|
|
|
|
(let* ((handler (and (stringp string)
|
|
|
|
|
(get-text-property 0 'yank-handler string)))
|
|
|
|
|
(param (or (nth 1 handler) string))
|
2006-09-28 19:06:39 +00:00
|
|
|
|
(opoint (point))
|
2007-02-09 23:09:16 +00:00
|
|
|
|
(inhibit-read-only inhibit-read-only)
|
2006-09-28 19:06:39 +00:00
|
|
|
|
end)
|
|
|
|
|
|
2003-01-19 01:07:34 +00:00
|
|
|
|
(setq yank-undo-function t)
|
|
|
|
|
(if (nth 0 handler) ;; FUNCTION
|
|
|
|
|
(funcall (car handler) param)
|
2003-01-18 23:35:06 +00:00
|
|
|
|
(insert param))
|
2006-09-28 19:06:39 +00:00
|
|
|
|
(setq end (point))
|
|
|
|
|
|
2007-02-09 23:09:16 +00:00
|
|
|
|
;; Prevent read-only properties from interfering with the
|
|
|
|
|
;; following text property changes.
|
|
|
|
|
(setq inhibit-read-only t)
|
|
|
|
|
|
2006-09-28 19:06:39 +00:00
|
|
|
|
;; What should we do with `font-lock-face' properties?
|
|
|
|
|
(if font-lock-defaults
|
|
|
|
|
;; No, just wipe them.
|
|
|
|
|
(remove-list-of-text-properties opoint end '(font-lock-face))
|
|
|
|
|
;; Convert them to `face'.
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char opoint)
|
|
|
|
|
(while (< (point) end)
|
|
|
|
|
(let ((face (get-text-property (point) 'font-lock-face))
|
|
|
|
|
run-end)
|
|
|
|
|
(setq run-end
|
|
|
|
|
(next-single-property-change (point) 'font-lock-face nil end))
|
|
|
|
|
(when face
|
|
|
|
|
(remove-text-properties (point) run-end '(font-lock-face nil))
|
|
|
|
|
(put-text-property (point) run-end 'face face))
|
|
|
|
|
(goto-char run-end)))))
|
|
|
|
|
|
2003-01-19 01:07:34 +00:00
|
|
|
|
(unless (nth 2 handler) ;; NOEXCLUDE
|
2003-01-18 23:35:06 +00:00
|
|
|
|
(remove-yank-excluded-properties opoint (point)))
|
2006-10-18 10:56:46 +00:00
|
|
|
|
|
|
|
|
|
;; If last inserted char has properties, mark them as rear-nonsticky.
|
|
|
|
|
(if (and (> end opoint)
|
|
|
|
|
(text-properties-at (1- end)))
|
|
|
|
|
(put-text-property (1- end) end 'rear-nonsticky t))
|
|
|
|
|
|
2007-04-09 23:10:00 +00:00
|
|
|
|
(if (eq yank-undo-function t) ;; not set by FUNCTION
|
2003-01-19 01:07:34 +00:00
|
|
|
|
(setq yank-undo-function (nth 3 handler))) ;; UNDO
|
2007-04-09 23:10:00 +00:00
|
|
|
|
(if (nth 4 handler) ;; COMMAND
|
2003-01-19 01:07:34 +00:00
|
|
|
|
(setq this-command (nth 4 handler)))))
|
2003-02-04 12:29:42 +00:00
|
|
|
|
|
2004-05-07 01:06:20 +00:00
|
|
|
|
(defun insert-buffer-substring-no-properties (buffer &optional start end)
|
|
|
|
|
"Insert before point a substring of BUFFER, without text properties.
|
2002-04-21 17:00:41 +00:00
|
|
|
|
BUFFER may be a buffer or a buffer name.
|
2004-06-07 20:54:42 +00:00
|
|
|
|
Arguments START and END are character positions specifying the substring.
|
|
|
|
|
They default to the values of (point-min) and (point-max) in BUFFER."
|
2002-04-21 17:00:41 +00:00
|
|
|
|
(let ((opoint (point)))
|
2004-05-07 01:06:20 +00:00
|
|
|
|
(insert-buffer-substring buffer start end)
|
2002-04-21 17:00:41 +00:00
|
|
|
|
(let ((inhibit-read-only t))
|
|
|
|
|
(set-text-properties opoint (point) nil))))
|
|
|
|
|
|
2004-05-07 01:06:20 +00:00
|
|
|
|
(defun insert-buffer-substring-as-yank (buffer &optional start end)
|
|
|
|
|
"Insert before point a part of BUFFER, stripping some text properties.
|
|
|
|
|
BUFFER may be a buffer or a buffer name.
|
2004-06-07 20:54:42 +00:00
|
|
|
|
Arguments START and END are character positions specifying the substring.
|
|
|
|
|
They default to the values of (point-min) and (point-max) in BUFFER.
|
2004-05-07 01:06:20 +00:00
|
|
|
|
Strip text properties from the inserted text according to
|
|
|
|
|
`yank-excluded-properties'."
|
2004-04-16 12:51:06 +00:00
|
|
|
|
;; Since the buffer text should not normally have yank-handler properties,
|
|
|
|
|
;; there is no need to handle them here.
|
2002-04-21 17:00:41 +00:00
|
|
|
|
(let ((opoint (point)))
|
2004-05-07 01:06:20 +00:00
|
|
|
|
(insert-buffer-substring buffer start end)
|
2002-04-29 21:06:51 +00:00
|
|
|
|
(remove-yank-excluded-properties opoint (point))))
|
2002-04-21 17:00:41 +00:00
|
|
|
|
|
2002-04-19 00:06:54 +00:00
|
|
|
|
|
2005-10-22 15:01:08 +00:00
|
|
|
|
;;;; Synchronous shell commands.
|
2002-04-19 00:06:54 +00:00
|
|
|
|
|
1990-11-05 10:06:02 +00:00
|
|
|
|
(defun start-process-shell-command (name buffer &rest args)
|
|
|
|
|
"Start a program in a subprocess. Return the process object for it.
|
|
|
|
|
NAME is name for process. It is modified if necessary to make it unique.
|
2004-05-10 17:44:56 +00:00
|
|
|
|
BUFFER is the buffer (or buffer name) to associate with the process.
|
1990-11-05 10:06:02 +00:00
|
|
|
|
Process output goes at end of that buffer, unless you specify
|
|
|
|
|
an output stream or filter function to handle the output.
|
|
|
|
|
BUFFER may be also nil, meaning that this process is not associated
|
|
|
|
|
with any buffer
|
2009-08-19 03:03:05 +00:00
|
|
|
|
COMMAND is the shell command to run.
|
|
|
|
|
|
|
|
|
|
An old calling convention accepted any number of arguments after COMMAND,
|
|
|
|
|
which were just concatenated to COMMAND. This is still supported but strongly
|
2009-10-16 03:21:18 +00:00
|
|
|
|
discouraged."
|
1994-11-19 14:06:09 +00:00
|
|
|
|
;; We used to use `exec' to replace the shell with the command,
|
|
|
|
|
;; but that failed to handle (...) and semicolon, etc.
|
2008-07-31 05:33:56 +00:00
|
|
|
|
(start-process name buffer shell-file-name shell-command-switch
|
|
|
|
|
(mapconcat 'identity args " ")))
|
2009-10-16 05:03:56 +00:00
|
|
|
|
(set-advertised-calling-convention 'start-process-shell-command
|
2010-09-14 11:11:44 +00:00
|
|
|
|
'(name buffer command) "23.1")
|
2009-10-16 05:03:56 +00:00
|
|
|
|
|
2007-07-24 20:49:18 +00:00
|
|
|
|
(defun start-file-process-shell-command (name buffer &rest args)
|
|
|
|
|
"Start a program in a subprocess. Return the process object for it.
|
2009-10-16 03:21:18 +00:00
|
|
|
|
Similar to `start-process-shell-command', but calls `start-file-process'."
|
2007-07-24 20:49:18 +00:00
|
|
|
|
(start-file-process
|
|
|
|
|
name buffer
|
|
|
|
|
(if (file-remote-p default-directory) "/bin/sh" shell-file-name)
|
|
|
|
|
(if (file-remote-p default-directory) "-c" shell-command-switch)
|
|
|
|
|
(mapconcat 'identity args " ")))
|
2009-10-16 05:03:56 +00:00
|
|
|
|
(set-advertised-calling-convention 'start-file-process-shell-command
|
2010-09-14 11:11:44 +00:00
|
|
|
|
'(name buffer command) "23.1")
|
2007-07-24 20:49:18 +00:00
|
|
|
|
|
2001-10-05 12:30:20 +00:00
|
|
|
|
(defun call-process-shell-command (command &optional infile buffer display
|
|
|
|
|
&rest args)
|
|
|
|
|
"Execute the shell command COMMAND synchronously in separate process.
|
|
|
|
|
The remaining arguments are optional.
|
|
|
|
|
The program's input comes from file INFILE (nil means `/dev/null').
|
|
|
|
|
Insert output in BUFFER before point; t means current buffer;
|
|
|
|
|
nil for BUFFER means discard it; 0 means discard and don't wait.
|
|
|
|
|
BUFFER can also have the form (REAL-BUFFER STDERR-FILE); in that case,
|
|
|
|
|
REAL-BUFFER says what to do with standard output, as above,
|
|
|
|
|
while STDERR-FILE says what to do with standard error in the child.
|
|
|
|
|
STDERR-FILE may be nil (discard standard error output),
|
|
|
|
|
t (mix it with ordinary output), or a file name string.
|
|
|
|
|
|
|
|
|
|
Fourth arg DISPLAY non-nil means redisplay buffer as output is inserted.
|
|
|
|
|
Remaining arguments are strings passed as additional arguments for COMMAND.
|
|
|
|
|
Wildcards and redirection are handled as usual in the shell.
|
|
|
|
|
|
|
|
|
|
If BUFFER is 0, `call-process-shell-command' returns immediately with value nil.
|
|
|
|
|
Otherwise it waits for COMMAND to terminate and returns a numeric exit
|
|
|
|
|
status or a signal description string.
|
|
|
|
|
If you quit, the process is killed with SIGINT, or SIGKILL if you quit again."
|
2008-07-31 05:33:56 +00:00
|
|
|
|
;; We used to use `exec' to replace the shell with the command,
|
|
|
|
|
;; but that failed to handle (...) and semicolon, etc.
|
|
|
|
|
(call-process shell-file-name
|
|
|
|
|
infile buffer display
|
|
|
|
|
shell-command-switch
|
|
|
|
|
(mapconcat 'identity (cons command args) " ")))
|
2007-07-24 20:49:18 +00:00
|
|
|
|
|
|
|
|
|
(defun process-file-shell-command (command &optional infile buffer display
|
|
|
|
|
&rest args)
|
|
|
|
|
"Process files synchronously in a separate process.
|
|
|
|
|
Similar to `call-process-shell-command', but calls `process-file'."
|
|
|
|
|
(process-file
|
|
|
|
|
(if (file-remote-p default-directory) "/bin/sh" shell-file-name)
|
|
|
|
|
infile buffer display
|
|
|
|
|
(if (file-remote-p default-directory) "-c" shell-command-switch)
|
|
|
|
|
(mapconcat 'identity (cons command args) " ")))
|
1996-09-28 04:16:00 +00:00
|
|
|
|
|
2005-10-22 15:01:08 +00:00
|
|
|
|
;;;; Lisp macros to do various things temporarily.
|
|
|
|
|
|
2008-10-25 09:18:19 +00:00
|
|
|
|
(defmacro with-current-buffer (buffer-or-name &rest body)
|
|
|
|
|
"Execute the forms in BODY with BUFFER-OR-NAME temporarily current.
|
|
|
|
|
BUFFER-OR-NAME must be a buffer or the name of an existing buffer.
|
|
|
|
|
The value returned is the value of the last form in BODY. See
|
|
|
|
|
also `with-temp-buffer'."
|
2003-05-17 22:00:40 +00:00
|
|
|
|
(declare (indent 1) (debug t))
|
|
|
|
|
`(save-current-buffer
|
2008-10-25 09:18:19 +00:00
|
|
|
|
(set-buffer ,buffer-or-name)
|
2003-05-17 22:00:40 +00:00
|
|
|
|
,@body))
|
|
|
|
|
|
|
|
|
|
(defmacro with-selected-window (window &rest body)
|
|
|
|
|
"Execute the forms in BODY with WINDOW as the selected window.
|
|
|
|
|
The value returned is the value of the last form in BODY.
|
2005-06-25 14:04:18 +00:00
|
|
|
|
|
2008-11-02 11:02:58 +00:00
|
|
|
|
This macro saves and restores the selected window, as well as the
|
|
|
|
|
selected window of each frame. It does not change the order of
|
|
|
|
|
recently selected windows. If the previously selected window of
|
|
|
|
|
some frame is no longer live at the end of BODY, that frame's
|
|
|
|
|
selected window is left alone. If the selected window is no
|
|
|
|
|
longer live, then whatever window is selected at the end of BODY
|
|
|
|
|
remains selected.
|
|
|
|
|
|
|
|
|
|
This macro uses `save-current-buffer' to save and restore the
|
|
|
|
|
current buffer, since otherwise its normal operation could
|
|
|
|
|
potentially make a different buffer current. It does not alter
|
|
|
|
|
the buffer list ordering."
|
2003-05-17 22:00:40 +00:00
|
|
|
|
(declare (indent 1) (debug t))
|
2003-07-21 09:57:01 +00:00
|
|
|
|
;; Most of this code is a copy of save-selected-window.
|
|
|
|
|
`(let ((save-selected-window-window (selected-window))
|
2004-05-29 15:23:42 +00:00
|
|
|
|
;; It is necessary to save all of these, because calling
|
|
|
|
|
;; select-window changes frame-selected-window for whatever
|
|
|
|
|
;; frame that window is in.
|
2003-07-21 09:57:01 +00:00
|
|
|
|
(save-selected-window-alist
|
|
|
|
|
(mapcar (lambda (frame) (list frame (frame-selected-window frame)))
|
|
|
|
|
(frame-list))))
|
2005-06-25 14:04:18 +00:00
|
|
|
|
(save-current-buffer
|
|
|
|
|
(unwind-protect
|
|
|
|
|
(progn (select-window ,window 'norecord)
|
|
|
|
|
,@body)
|
|
|
|
|
(dolist (elt save-selected-window-alist)
|
|
|
|
|
(and (frame-live-p (car elt))
|
|
|
|
|
(window-live-p (cadr elt))
|
2008-11-02 11:02:58 +00:00
|
|
|
|
(set-frame-selected-window (car elt) (cadr elt) 'norecord)))
|
|
|
|
|
(when (window-live-p save-selected-window-window)
|
|
|
|
|
(select-window save-selected-window-window 'norecord))))))
|
1996-09-22 04:40:37 +00:00
|
|
|
|
|
2004-05-23 02:26:21 +00:00
|
|
|
|
(defmacro with-selected-frame (frame &rest body)
|
|
|
|
|
"Execute the forms in BODY with FRAME as the selected frame.
|
|
|
|
|
The value returned is the value of the last form in BODY.
|
2008-11-02 11:02:58 +00:00
|
|
|
|
|
|
|
|
|
This macro neither changes the order of recently selected windows
|
|
|
|
|
nor the buffer list."
|
2004-05-23 02:26:21 +00:00
|
|
|
|
(declare (indent 1) (debug t))
|
2006-03-12 04:12:31 +00:00
|
|
|
|
(let ((old-frame (make-symbol "old-frame"))
|
|
|
|
|
(old-buffer (make-symbol "old-buffer")))
|
|
|
|
|
`(let ((,old-frame (selected-frame))
|
|
|
|
|
(,old-buffer (current-buffer)))
|
|
|
|
|
(unwind-protect
|
2008-11-02 11:02:58 +00:00
|
|
|
|
(progn (select-frame ,frame 'norecord)
|
2006-03-12 04:12:31 +00:00
|
|
|
|
,@body)
|
2008-11-02 11:02:58 +00:00
|
|
|
|
(when (frame-live-p ,old-frame)
|
|
|
|
|
(select-frame ,old-frame 'norecord))
|
|
|
|
|
(when (buffer-live-p ,old-buffer)
|
|
|
|
|
(set-buffer ,old-buffer))))))
|
2004-05-23 02:26:21 +00:00
|
|
|
|
|
1998-11-19 09:43:40 +00:00
|
|
|
|
(defmacro with-temp-file (file &rest body)
|
|
|
|
|
"Create a new buffer, evaluate BODY there, and write the buffer to FILE.
|
|
|
|
|
The value returned is the value of the last form in BODY.
|
1996-10-03 02:13:52 +00:00
|
|
|
|
See also `with-temp-buffer'."
|
2003-06-18 21:49:55 +00:00
|
|
|
|
(declare (debug t))
|
1996-09-28 04:16:00 +00:00
|
|
|
|
(let ((temp-file (make-symbol "temp-file"))
|
1996-10-03 02:13:52 +00:00
|
|
|
|
(temp-buffer (make-symbol "temp-buffer")))
|
|
|
|
|
`(let ((,temp-file ,file)
|
|
|
|
|
(,temp-buffer
|
|
|
|
|
(get-buffer-create (generate-new-buffer-name " *temp file*"))))
|
|
|
|
|
(unwind-protect
|
|
|
|
|
(prog1
|
|
|
|
|
(with-current-buffer ,temp-buffer
|
1998-11-19 09:43:40 +00:00
|
|
|
|
,@body)
|
1996-10-03 02:13:52 +00:00
|
|
|
|
(with-current-buffer ,temp-buffer
|
2008-05-28 17:35:34 +00:00
|
|
|
|
(write-region nil nil ,temp-file nil 0)))
|
1996-10-03 02:13:52 +00:00
|
|
|
|
(and (buffer-name ,temp-buffer)
|
|
|
|
|
(kill-buffer ,temp-buffer))))))
|
|
|
|
|
|
1998-11-19 09:43:40 +00:00
|
|
|
|
(defmacro with-temp-message (message &rest body)
|
1999-01-06 15:23:46 +00:00
|
|
|
|
"Display MESSAGE temporarily if non-nil while BODY is evaluated.
|
1998-11-19 09:43:40 +00:00
|
|
|
|
The original message is restored to the echo area after BODY has finished.
|
|
|
|
|
The value returned is the value of the last form in BODY.
|
1999-01-06 15:23:46 +00:00
|
|
|
|
MESSAGE is written to the message log buffer if `message-log-max' is non-nil.
|
|
|
|
|
If MESSAGE is nil, the echo area and message log buffer are unchanged.
|
|
|
|
|
Use a MESSAGE of \"\" to temporarily clear the echo area."
|
2003-06-18 21:49:55 +00:00
|
|
|
|
(declare (debug t))
|
1999-01-06 10:05:50 +00:00
|
|
|
|
(let ((current-message (make-symbol "current-message"))
|
|
|
|
|
(temp-message (make-symbol "with-temp-message")))
|
|
|
|
|
`(let ((,temp-message ,message)
|
|
|
|
|
(,current-message))
|
1998-11-19 09:43:40 +00:00
|
|
|
|
(unwind-protect
|
|
|
|
|
(progn
|
1999-01-06 10:05:50 +00:00
|
|
|
|
(when ,temp-message
|
|
|
|
|
(setq ,current-message (current-message))
|
1999-05-07 09:42:50 +00:00
|
|
|
|
(message "%s" ,temp-message))
|
1998-11-19 09:43:40 +00:00
|
|
|
|
,@body)
|
2001-12-16 17:41:30 +00:00
|
|
|
|
(and ,temp-message
|
|
|
|
|
(if ,current-message
|
|
|
|
|
(message "%s" ,current-message)
|
|
|
|
|
(message nil)))))))
|
1998-11-19 09:43:40 +00:00
|
|
|
|
|
|
|
|
|
(defmacro with-temp-buffer (&rest body)
|
|
|
|
|
"Create a temporary buffer, and evaluate BODY there like `progn'.
|
1996-10-03 02:13:52 +00:00
|
|
|
|
See also `with-temp-file' and `with-output-to-string'."
|
2003-05-17 22:00:40 +00:00
|
|
|
|
(declare (indent 0) (debug t))
|
1996-10-03 02:13:52 +00:00
|
|
|
|
(let ((temp-buffer (make-symbol "temp-buffer")))
|
2004-10-13 17:05:55 +00:00
|
|
|
|
`(let ((,temp-buffer (generate-new-buffer " *temp*")))
|
2008-03-29 22:50:11 +00:00
|
|
|
|
;; FIXME: kill-buffer can change current-buffer in some odd cases.
|
|
|
|
|
(with-current-buffer ,temp-buffer
|
|
|
|
|
(unwind-protect
|
|
|
|
|
(progn ,@body)
|
|
|
|
|
(and (buffer-name ,temp-buffer)
|
|
|
|
|
(kill-buffer ,temp-buffer)))))))
|
1996-10-03 02:13:52 +00:00
|
|
|
|
|
2009-09-08 19:42:21 +00:00
|
|
|
|
(defmacro with-silent-modifications (&rest body)
|
|
|
|
|
"Execute BODY, pretending it does not modifies the buffer.
|
|
|
|
|
If BODY performs real modifications to the buffer's text, other
|
|
|
|
|
than cosmetic ones, undo data may become corrupted.
|
|
|
|
|
Typically used around modifications of text-properties which do not really
|
|
|
|
|
affect the buffer's content."
|
|
|
|
|
(declare (debug t) (indent 0))
|
|
|
|
|
(let ((modified (make-symbol "modified")))
|
|
|
|
|
`(let* ((,modified (buffer-modified-p))
|
|
|
|
|
(buffer-undo-list t)
|
|
|
|
|
(inhibit-read-only t)
|
|
|
|
|
(inhibit-modification-hooks t)
|
|
|
|
|
deactivate-mark
|
|
|
|
|
;; Avoid setting and removing file locks and checking
|
|
|
|
|
;; buffer's uptodate-ness w.r.t the underlying file.
|
|
|
|
|
buffer-file-name
|
|
|
|
|
buffer-file-truename)
|
|
|
|
|
(unwind-protect
|
|
|
|
|
(progn
|
|
|
|
|
,@body)
|
|
|
|
|
(unless ,modified
|
|
|
|
|
(restore-buffer-modified-p nil))))))
|
|
|
|
|
|
1996-09-24 20:03:15 +00:00
|
|
|
|
(defmacro with-output-to-string (&rest body)
|
|
|
|
|
"Execute BODY, return the text it sent to `standard-output', as a string."
|
2003-05-17 22:00:40 +00:00
|
|
|
|
(declare (indent 0) (debug t))
|
1996-10-03 02:13:52 +00:00
|
|
|
|
`(let ((standard-output
|
|
|
|
|
(get-buffer-create (generate-new-buffer-name " *string-output*"))))
|
2008-09-23 17:26:40 +00:00
|
|
|
|
(unwind-protect
|
|
|
|
|
(progn
|
|
|
|
|
(let ((standard-output standard-output))
|
|
|
|
|
,@body)
|
|
|
|
|
(with-current-buffer standard-output
|
|
|
|
|
(buffer-string)))
|
|
|
|
|
(kill-buffer standard-output))))
|
1996-11-09 21:46:35 +00:00
|
|
|
|
|
2001-11-08 00:57:57 +00:00
|
|
|
|
(defmacro with-local-quit (&rest body)
|
2004-07-31 03:42:27 +00:00
|
|
|
|
"Execute BODY, allowing quits to terminate BODY but not escape further.
|
2004-10-17 06:59:15 +00:00
|
|
|
|
When a quit terminates BODY, `with-local-quit' returns nil but
|
2006-05-25 00:20:40 +00:00
|
|
|
|
requests another quit. That quit will be processed as soon as quitting
|
|
|
|
|
is allowed once again. (Immediately, if `inhibit-quit' is nil.)"
|
2002-11-20 14:31:52 +00:00
|
|
|
|
(declare (debug t) (indent 0))
|
2001-11-08 00:57:57 +00:00
|
|
|
|
`(condition-case nil
|
|
|
|
|
(let ((inhibit-quit nil))
|
|
|
|
|
,@body)
|
2006-05-25 00:19:02 +00:00
|
|
|
|
(quit (setq quit-flag t)
|
|
|
|
|
;; This call is to give a chance to handle quit-flag
|
|
|
|
|
;; in case inhibit-quit is nil.
|
|
|
|
|
;; Without this, it will not be handled until the next function
|
|
|
|
|
;; call, and that might allow it to exit thru a condition-case
|
|
|
|
|
;; that intends to handle the quit signal next time.
|
|
|
|
|
(eval '(ignore nil)))))
|
2001-11-08 00:57:57 +00:00
|
|
|
|
|
2004-12-13 19:26:42 +00:00
|
|
|
|
(defmacro while-no-input (&rest body)
|
|
|
|
|
"Execute BODY only as long as there's no pending input.
|
|
|
|
|
If input arrives, that ends the execution of BODY,
|
2005-08-09 02:51:22 +00:00
|
|
|
|
and `while-no-input' returns t. Quitting makes it return nil.
|
|
|
|
|
If BODY finishes, `while-no-input' returns whatever value BODY produced."
|
2004-12-13 19:26:42 +00:00
|
|
|
|
(declare (debug t) (indent 0))
|
|
|
|
|
(let ((catch-sym (make-symbol "input")))
|
|
|
|
|
`(with-local-quit
|
|
|
|
|
(catch ',catch-sym
|
|
|
|
|
(let ((throw-on-input ',catch-sym))
|
2006-09-11 22:21:55 +00:00
|
|
|
|
(or (input-pending-p)
|
2008-03-08 16:06:25 +00:00
|
|
|
|
(progn ,@body)))))))
|
2004-12-13 19:26:42 +00:00
|
|
|
|
|
2007-07-10 19:54:43 +00:00
|
|
|
|
(defmacro condition-case-no-debug (var bodyform &rest handlers)
|
|
|
|
|
"Like `condition-case' except that it does not catch anything when debugging.
|
|
|
|
|
More specifically if `debug-on-error' is set, then it does not catch any signal."
|
|
|
|
|
(declare (debug condition-case) (indent 2))
|
|
|
|
|
(let ((bodysym (make-symbol "body")))
|
|
|
|
|
`(let ((,bodysym (lambda () ,bodyform)))
|
|
|
|
|
(if debug-on-error
|
|
|
|
|
(funcall ,bodysym)
|
|
|
|
|
(condition-case ,var
|
|
|
|
|
(funcall ,bodysym)
|
|
|
|
|
,@handlers)))))
|
|
|
|
|
|
|
|
|
|
(defmacro with-demoted-errors (&rest body)
|
|
|
|
|
"Run BODY and demote any errors to simple messages.
|
|
|
|
|
If `debug-on-error' is non-nil, run BODY without catching its errors.
|
|
|
|
|
This is to be used around code which is not expected to signal an error
|
2008-06-27 02:14:52 +00:00
|
|
|
|
but which should be robust in the unexpected case that an error is signaled."
|
2007-07-10 19:54:43 +00:00
|
|
|
|
(declare (debug t) (indent 0))
|
|
|
|
|
(let ((err (make-symbol "err")))
|
|
|
|
|
`(condition-case-no-debug ,err
|
|
|
|
|
(progn ,@body)
|
|
|
|
|
(error (message "Error: %s" ,err) nil))))
|
|
|
|
|
|
1996-11-09 21:46:35 +00:00
|
|
|
|
(defmacro combine-after-change-calls (&rest body)
|
|
|
|
|
"Execute BODY, but don't call the after-change functions till the end.
|
|
|
|
|
If BODY makes changes in the buffer, they are recorded
|
|
|
|
|
and the functions on `after-change-functions' are called several times
|
|
|
|
|
when BODY is finished.
|
1997-03-11 23:55:24 +00:00
|
|
|
|
The return value is the value of the last form in BODY.
|
1996-11-09 21:46:35 +00:00
|
|
|
|
|
|
|
|
|
If `before-change-functions' is non-nil, then calls to the after-change
|
|
|
|
|
functions can't be deferred, so in that case this macro has no effect.
|
|
|
|
|
|
|
|
|
|
Do not alter `after-change-functions' or `before-change-functions'
|
|
|
|
|
in BODY."
|
2003-05-17 22:00:40 +00:00
|
|
|
|
(declare (indent 0) (debug t))
|
1996-11-09 21:46:35 +00:00
|
|
|
|
`(unwind-protect
|
|
|
|
|
(let ((combine-after-change-calls t))
|
|
|
|
|
. ,body)
|
|
|
|
|
(combine-after-change-execute)))
|
2007-04-04 15:34:43 +00:00
|
|
|
|
|
|
|
|
|
(defmacro with-case-table (table &rest body)
|
|
|
|
|
"Execute the forms in BODY with TABLE as the current case table.
|
|
|
|
|
The value returned is the value of the last form in BODY."
|
|
|
|
|
(declare (indent 1) (debug t))
|
2007-04-06 12:15:04 +00:00
|
|
|
|
(let ((old-case-table (make-symbol "table"))
|
|
|
|
|
(old-buffer (make-symbol "buffer")))
|
|
|
|
|
`(let ((,old-case-table (current-case-table))
|
|
|
|
|
(,old-buffer (current-buffer)))
|
|
|
|
|
(unwind-protect
|
|
|
|
|
(progn (set-case-table ,table)
|
|
|
|
|
,@body)
|
|
|
|
|
(with-current-buffer ,old-buffer
|
|
|
|
|
(set-case-table ,old-case-table))))))
|
2005-10-22 15:01:08 +00:00
|
|
|
|
|
|
|
|
|
;;; Matching and match data.
|
2002-04-19 00:06:54 +00:00
|
|
|
|
|
1996-08-28 22:44:18 +00:00
|
|
|
|
(defvar save-match-data-internal)
|
|
|
|
|
|
|
|
|
|
;; We use save-match-data-internal as the local variable because
|
|
|
|
|
;; that works ok in practice (people should not use that variable elsewhere).
|
|
|
|
|
;; We used to use an uninterned symbol; the compiler handles that properly
|
|
|
|
|
;; now, but it generates slower code.
|
1993-04-10 06:21:55 +00:00
|
|
|
|
(defmacro save-match-data (&rest body)
|
2002-02-25 17:44:03 +00:00
|
|
|
|
"Execute the BODY forms, restoring the global value of the match data.
|
|
|
|
|
The value returned is the value of the last form in BODY."
|
Fix bootstrapping problems.
Use the system locale to specify Emacs locale defaults.
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* subr.el (save-match-data): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
* language/japan-util.el (setup-japanese-environment-internal):
Prefer japanese-iso-8bit if the system-type is usg-unix-v.
* startup.el (iso-8859-n-locale-regexp): Remove.
(locale-translation-file-name): Move to mule-cmds.el.
(command-line): Move locale-stuff into set-locale-environment.
1999-10-19 07:18:58 +00:00
|
|
|
|
;; It is better not to use backquote here,
|
|
|
|
|
;; because that makes a bootstrapping problem
|
|
|
|
|
;; if you need to recompile all the Lisp files using interpreted code.
|
2003-05-17 22:00:40 +00:00
|
|
|
|
(declare (indent 0) (debug t))
|
Fix bootstrapping problems.
Use the system locale to specify Emacs locale defaults.
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* subr.el (save-match-data): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
* language/japan-util.el (setup-japanese-environment-internal):
Prefer japanese-iso-8bit if the system-type is usg-unix-v.
* startup.el (iso-8859-n-locale-regexp): Remove.
(locale-translation-file-name): Move to mule-cmds.el.
(command-line): Move locale-stuff into set-locale-environment.
1999-10-19 07:18:58 +00:00
|
|
|
|
(list 'let
|
|
|
|
|
'((save-match-data-internal (match-data)))
|
|
|
|
|
(list 'unwind-protect
|
|
|
|
|
(cons 'progn body)
|
2005-06-22 23:18:45 +00:00
|
|
|
|
;; It is safe to free (evaporate) markers immediately here,
|
|
|
|
|
;; as Lisp programs should not copy from save-match-data-internal.
|
2005-06-08 22:37:23 +00:00
|
|
|
|
'(set-match-data save-match-data-internal 'evaporate))))
|
1995-03-23 08:43:08 +00:00
|
|
|
|
|
1995-03-24 09:01:09 +00:00
|
|
|
|
(defun match-string (num &optional string)
|
1995-03-23 08:43:08 +00:00
|
|
|
|
"Return string of text matched by last search.
|
|
|
|
|
NUM specifies which parenthesized expression in the last regexp.
|
|
|
|
|
Value is nil if NUMth pair didn't match, or there were less than NUM pairs.
|
|
|
|
|
Zero means the entire text matched by the whole regexp or whole string.
|
|
|
|
|
STRING should be given if the last search was by `string-match' on STRING."
|
1995-03-24 09:01:09 +00:00
|
|
|
|
(if (match-beginning num)
|
|
|
|
|
(if string
|
|
|
|
|
(substring string (match-beginning num) (match-end num))
|
|
|
|
|
(buffer-substring (match-beginning num) (match-end num)))))
|
1995-01-27 07:06:27 +00:00
|
|
|
|
|
1997-12-21 02:08:37 +00:00
|
|
|
|
(defun match-string-no-properties (num &optional string)
|
|
|
|
|
"Return string of text matched by last search, without text properties.
|
|
|
|
|
NUM specifies which parenthesized expression in the last regexp.
|
|
|
|
|
Value is nil if NUMth pair didn't match, or there were less than NUM pairs.
|
|
|
|
|
Zero means the entire text matched by the whole regexp or whole string.
|
|
|
|
|
STRING should be given if the last search was by `string-match' on STRING."
|
|
|
|
|
(if (match-beginning num)
|
|
|
|
|
(if string
|
2004-04-16 12:51:06 +00:00
|
|
|
|
(substring-no-properties string (match-beginning num)
|
|
|
|
|
(match-end num))
|
1997-12-21 02:08:37 +00:00
|
|
|
|
(buffer-substring-no-properties (match-beginning num)
|
|
|
|
|
(match-end num)))))
|
|
|
|
|
|
2007-11-10 21:48:16 +00:00
|
|
|
|
|
|
|
|
|
(defun match-substitute-replacement (replacement
|
|
|
|
|
&optional fixedcase literal string subexp)
|
|
|
|
|
"Return REPLACEMENT as it will be inserted by `replace-match'.
|
|
|
|
|
In other words, all back-references in the form `\\&' and `\\N'
|
|
|
|
|
are substituted with actual strings matched by the last search.
|
|
|
|
|
Optional FIXEDCASE, LITERAL, STRING and SUBEXP have the same
|
|
|
|
|
meaning as for `replace-match'."
|
|
|
|
|
(let ((match (match-string 0 string)))
|
|
|
|
|
(save-match-data
|
|
|
|
|
(set-match-data (mapcar (lambda (x)
|
|
|
|
|
(if (numberp x)
|
|
|
|
|
(- x (match-beginning 0))
|
|
|
|
|
x))
|
|
|
|
|
(match-data t)))
|
|
|
|
|
(replace-match replacement fixedcase literal match subexp))))
|
|
|
|
|
|
|
|
|
|
|
2005-05-29 08:34:46 +00:00
|
|
|
|
(defun looking-back (regexp &optional limit greedy)
|
2003-06-18 21:49:55 +00:00
|
|
|
|
"Return non-nil if text before point matches regular expression REGEXP.
|
2004-10-16 15:29:46 +00:00
|
|
|
|
Like `looking-at' except matches before point, and is slower.
|
2006-07-24 17:01:08 +00:00
|
|
|
|
LIMIT if non-nil speeds up the search by specifying a minimum
|
|
|
|
|
starting position, to avoid checking matches that would start
|
|
|
|
|
before LIMIT.
|
2005-05-29 08:34:46 +00:00
|
|
|
|
|
2008-11-03 19:22:28 +00:00
|
|
|
|
If GREEDY is non-nil, extend the match backwards as far as
|
|
|
|
|
possible, stopping when a single additional previous character
|
|
|
|
|
cannot be part of a match for REGEXP. When the match is
|
2008-11-04 07:35:57 +00:00
|
|
|
|
extended, its starting position is allowed to occur before
|
2008-11-03 19:22:28 +00:00
|
|
|
|
LIMIT."
|
2005-05-29 08:34:46 +00:00
|
|
|
|
(let ((start (point))
|
|
|
|
|
(pos
|
|
|
|
|
(save-excursion
|
|
|
|
|
(and (re-search-backward (concat "\\(?:" regexp "\\)\\=") limit t)
|
|
|
|
|
(point)))))
|
|
|
|
|
(if (and greedy pos)
|
|
|
|
|
(save-restriction
|
|
|
|
|
(narrow-to-region (point-min) start)
|
|
|
|
|
(while (and (> pos (point-min))
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char pos)
|
|
|
|
|
(backward-char 1)
|
|
|
|
|
(looking-at (concat "\\(?:" regexp "\\)\\'"))))
|
|
|
|
|
(setq pos (1- pos)))
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char pos)
|
|
|
|
|
(looking-at (concat "\\(?:" regexp "\\)\\'")))))
|
|
|
|
|
(not (null pos))))
|
|
|
|
|
|
2007-07-10 03:54:30 +00:00
|
|
|
|
(defsubst looking-at-p (regexp)
|
|
|
|
|
"\
|
|
|
|
|
Same as `looking-at' except this function does not change the match data."
|
|
|
|
|
(let ((inhibit-changing-match-data t))
|
|
|
|
|
(looking-at regexp)))
|
|
|
|
|
|
|
|
|
|
(defsubst string-match-p (regexp string &optional start)
|
|
|
|
|
"\
|
|
|
|
|
Same as `string-match' except this function does not change the match data."
|
|
|
|
|
(let ((inhibit-changing-match-data t))
|
|
|
|
|
(string-match regexp string start)))
|
|
|
|
|
|
2005-10-22 15:01:08 +00:00
|
|
|
|
(defun subregexp-context-p (regexp pos &optional start)
|
|
|
|
|
"Return non-nil if POS is in a normal subregexp context in REGEXP.
|
|
|
|
|
A subregexp context is one where a sub-regexp can appear.
|
|
|
|
|
A non-subregexp context is for example within brackets, or within a
|
|
|
|
|
repetition bounds operator `\\=\\{...\\}', or right after a `\\'.
|
|
|
|
|
If START is non-nil, it should be a position in REGEXP, smaller
|
|
|
|
|
than POS, and known to be in a subregexp context."
|
|
|
|
|
;; Here's one possible implementation, with the great benefit that it
|
|
|
|
|
;; reuses the regexp-matcher's own parser, so it understands all the
|
|
|
|
|
;; details of the syntax. A disadvantage is that it needs to match the
|
|
|
|
|
;; error string.
|
|
|
|
|
(condition-case err
|
|
|
|
|
(progn
|
|
|
|
|
(string-match (substring regexp (or start 0) pos) "")
|
|
|
|
|
t)
|
|
|
|
|
(invalid-regexp
|
|
|
|
|
(not (member (cadr err) '("Unmatched [ or [^"
|
|
|
|
|
"Unmatched \\{"
|
|
|
|
|
"Trailing backslash")))))
|
|
|
|
|
;; An alternative implementation:
|
|
|
|
|
;; (defconst re-context-re
|
|
|
|
|
;; (let* ((harmless-ch "[^\\[]")
|
|
|
|
|
;; (harmless-esc "\\\\[^{]")
|
|
|
|
|
;; (class-harmless-ch "[^][]")
|
|
|
|
|
;; (class-lb-harmless "[^]:]")
|
|
|
|
|
;; (class-lb-colon-maybe-charclass ":\\([a-z]+:]\\)?")
|
|
|
|
|
;; (class-lb (concat "\\[\\(" class-lb-harmless
|
|
|
|
|
;; "\\|" class-lb-colon-maybe-charclass "\\)"))
|
|
|
|
|
;; (class
|
|
|
|
|
;; (concat "\\[^?]?"
|
|
|
|
|
;; "\\(" class-harmless-ch
|
|
|
|
|
;; "\\|" class-lb "\\)*"
|
|
|
|
|
;; "\\[?]")) ; special handling for bare [ at end of re
|
|
|
|
|
;; (braces "\\\\{[0-9,]+\\\\}"))
|
|
|
|
|
;; (concat "\\`\\(" harmless-ch "\\|" harmless-esc
|
|
|
|
|
;; "\\|" class "\\|" braces "\\)*\\'"))
|
|
|
|
|
;; "Matches any prefix that corresponds to a normal subregexp context.")
|
|
|
|
|
;; (string-match re-context-re (substring regexp (or start 0) pos))
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
;;;; split-string
|
2003-05-30 23:11:35 +00:00
|
|
|
|
|
2003-05-22 20:59:57 +00:00
|
|
|
|
(defconst split-string-default-separators "[ \f\t\n\r\v]+"
|
|
|
|
|
"The default value of separators for `split-string'.
|
|
|
|
|
|
|
|
|
|
A regexp matching strings of whitespace. May be locale-dependent
|
|
|
|
|
\(as yet unimplemented). Should not match non-breaking spaces.
|
|
|
|
|
|
|
|
|
|
Warning: binding this to a different value and using it as default is
|
|
|
|
|
likely to have undesired semantics.")
|
|
|
|
|
|
|
|
|
|
;; The specification says that if both SEPARATORS and OMIT-NULLS are
|
|
|
|
|
;; defaulted, OMIT-NULLS should be treated as t. Simplifying the logical
|
|
|
|
|
;; expression leads to the equivalent implementation that if SEPARATORS
|
|
|
|
|
;; is defaulted, OMIT-NULLS is treated as t.
|
|
|
|
|
(defun split-string (string &optional separators omit-nulls)
|
2004-09-08 12:24:29 +00:00
|
|
|
|
"Split STRING into substrings bounded by matches for SEPARATORS.
|
2003-05-22 20:59:57 +00:00
|
|
|
|
|
|
|
|
|
The beginning and end of STRING, and each match for SEPARATORS, are
|
|
|
|
|
splitting points. The substrings matching SEPARATORS are removed, and
|
|
|
|
|
the substrings between the splitting points are collected as a list,
|
1996-09-24 21:19:03 +00:00
|
|
|
|
which is returned.
|
1997-12-21 01:35:50 +00:00
|
|
|
|
|
2003-05-22 20:59:57 +00:00
|
|
|
|
If SEPARATORS is non-nil, it should be a regular expression matching text
|
|
|
|
|
which separates, but is not part of, the substrings. If nil it defaults to
|
|
|
|
|
`split-string-default-separators', normally \"[ \\f\\t\\n\\r\\v]+\", and
|
|
|
|
|
OMIT-NULLS is forced to t.
|
|
|
|
|
|
2004-05-07 01:06:20 +00:00
|
|
|
|
If OMIT-NULLS is t, zero-length substrings are omitted from the list \(so
|
2003-05-22 20:59:57 +00:00
|
|
|
|
that for the default value of SEPARATORS leading and trailing whitespace
|
|
|
|
|
are effectively trimmed). If nil, all zero-length substrings are retained,
|
|
|
|
|
which correctly parses CSV format, for example.
|
|
|
|
|
|
|
|
|
|
Note that the effect of `(split-string STRING)' is the same as
|
2007-01-06 14:36:34 +00:00
|
|
|
|
`(split-string STRING split-string-default-separators t)'. In the rare
|
2003-05-22 20:59:57 +00:00
|
|
|
|
case that you wish to retain zero-length substrings when splitting on
|
|
|
|
|
whitespace, use `(split-string STRING split-string-default-separators)'.
|
2000-02-22 20:16:31 +00:00
|
|
|
|
|
|
|
|
|
Modifies the match data; use `save-match-data' if necessary."
|
2003-05-22 20:59:57 +00:00
|
|
|
|
(let ((keep-nulls (not (if separators omit-nulls t)))
|
|
|
|
|
(rexp (or separators split-string-default-separators))
|
1996-09-24 21:19:03 +00:00
|
|
|
|
(start 0)
|
1997-12-21 01:35:50 +00:00
|
|
|
|
notfirst
|
1996-09-24 21:19:03 +00:00
|
|
|
|
(list nil))
|
1997-12-21 01:35:50 +00:00
|
|
|
|
(while (and (string-match rexp string
|
|
|
|
|
(if (and notfirst
|
|
|
|
|
(= start (match-beginning 0))
|
|
|
|
|
(< start (length string)))
|
|
|
|
|
(1+ start) start))
|
2003-05-22 20:59:57 +00:00
|
|
|
|
(< start (length string)))
|
1997-12-21 01:35:50 +00:00
|
|
|
|
(setq notfirst t)
|
2003-05-22 20:59:57 +00:00
|
|
|
|
(if (or keep-nulls (< start (match-beginning 0)))
|
1996-09-24 21:19:03 +00:00
|
|
|
|
(setq list
|
|
|
|
|
(cons (substring string start (match-beginning 0))
|
|
|
|
|
list)))
|
|
|
|
|
(setq start (match-end 0)))
|
2003-05-22 20:59:57 +00:00
|
|
|
|
(if (or keep-nulls (< start (length string)))
|
1996-09-24 21:19:03 +00:00
|
|
|
|
(setq list
|
|
|
|
|
(cons (substring string start)
|
|
|
|
|
list)))
|
|
|
|
|
(nreverse list)))
|
2007-06-28 01:35:10 +00:00
|
|
|
|
|
2007-08-12 17:59:40 +00:00
|
|
|
|
(defun combine-and-quote-strings (strings &optional separator)
|
2007-06-28 01:35:10 +00:00
|
|
|
|
"Concatenate the STRINGS, adding the SEPARATOR (default \" \").
|
|
|
|
|
This tries to quote the strings to avoid ambiguity such that
|
2007-08-12 17:59:40 +00:00
|
|
|
|
(split-string-and-unquote (combine-and-quote-strings strs)) == strs
|
2007-06-28 01:35:10 +00:00
|
|
|
|
Only some SEPARATORs will work properly."
|
2008-04-07 16:29:54 +00:00
|
|
|
|
(let* ((sep (or separator " "))
|
|
|
|
|
(re (concat "[\\\"]" "\\|" (regexp-quote sep))))
|
2007-06-28 01:35:10 +00:00
|
|
|
|
(mapconcat
|
|
|
|
|
(lambda (str)
|
2008-04-07 16:29:54 +00:00
|
|
|
|
(if (string-match re str)
|
2007-06-28 01:35:10 +00:00
|
|
|
|
(concat "\"" (replace-regexp-in-string "[\\\"]" "\\\\\\&" str) "\"")
|
|
|
|
|
str))
|
|
|
|
|
strings sep)))
|
|
|
|
|
|
2007-08-12 17:59:40 +00:00
|
|
|
|
(defun split-string-and-unquote (string &optional separator)
|
2007-06-28 01:35:10 +00:00
|
|
|
|
"Split the STRING into a list of strings.
|
2007-08-12 17:59:40 +00:00
|
|
|
|
It understands Emacs Lisp quoting within STRING, such that
|
|
|
|
|
(split-string-and-unquote (combine-and-quote-strings strs)) == strs
|
2007-06-28 01:35:10 +00:00
|
|
|
|
The SEPARATOR regexp defaults to \"\\s-+\"."
|
|
|
|
|
(let ((sep (or separator "\\s-+"))
|
2008-10-20 17:29:29 +00:00
|
|
|
|
(i (string-match "\"" string)))
|
2007-08-12 17:59:40 +00:00
|
|
|
|
(if (null i)
|
|
|
|
|
(split-string string sep t) ; no quoting: easy
|
2007-06-28 01:35:10 +00:00
|
|
|
|
(append (unless (eq i 0) (split-string (substring string 0 i) sep t))
|
|
|
|
|
(let ((rfs (read-from-string string i)))
|
|
|
|
|
(cons (car rfs)
|
2007-08-12 17:59:40 +00:00
|
|
|
|
(split-string-and-unquote (substring string (cdr rfs))
|
|
|
|
|
sep)))))))
|
2007-06-28 01:35:10 +00:00
|
|
|
|
|
2005-10-22 15:01:08 +00:00
|
|
|
|
|
|
|
|
|
;;;; Replacement in strings.
|
1999-01-17 18:55:53 +00:00
|
|
|
|
|
|
|
|
|
(defun subst-char-in-string (fromchar tochar string &optional inplace)
|
|
|
|
|
"Replace FROMCHAR with TOCHAR in STRING each time it occurs.
|
|
|
|
|
Unless optional argument INPLACE is non-nil, return a new string."
|
2000-11-23 22:57:46 +00:00
|
|
|
|
(let ((i (length string))
|
|
|
|
|
(newstr (if inplace string (copy-sequence string))))
|
|
|
|
|
(while (> i 0)
|
|
|
|
|
(setq i (1- i))
|
|
|
|
|
(if (eq (aref newstr i) fromchar)
|
|
|
|
|
(aset newstr i tochar)))
|
|
|
|
|
newstr))
|
2000-02-22 20:16:31 +00:00
|
|
|
|
|
2000-03-14 22:57:28 +00:00
|
|
|
|
(defun replace-regexp-in-string (regexp rep string &optional
|
2007-04-09 23:10:00 +00:00
|
|
|
|
fixedcase literal subexp start)
|
2000-02-22 20:16:31 +00:00
|
|
|
|
"Replace all matches for REGEXP with REP in STRING.
|
|
|
|
|
|
|
|
|
|
Return a new string containing the replacements.
|
|
|
|
|
|
|
|
|
|
Optional arguments FIXEDCASE, LITERAL and SUBEXP are like the
|
|
|
|
|
arguments with the same names of function `replace-match'. If START
|
|
|
|
|
is non-nil, start replacements at that index in STRING.
|
|
|
|
|
|
|
|
|
|
REP is either a string used as the NEWTEXT arg of `replace-match' or a
|
2005-08-20 21:48:51 +00:00
|
|
|
|
function. If it is a function, it is called with the actual text of each
|
|
|
|
|
match, and its value is used as the replacement text. When REP is called,
|
|
|
|
|
the match-data are the result of matching REGEXP against a substring
|
|
|
|
|
of STRING.
|
2000-02-22 20:16:31 +00:00
|
|
|
|
|
2000-03-14 22:57:28 +00:00
|
|
|
|
To replace only the first match (if any), make REGEXP match up to \\'
|
|
|
|
|
and replace a sub-expression, e.g.
|
2002-10-29 23:42:00 +00:00
|
|
|
|
(replace-regexp-in-string \"\\\\(foo\\\\).*\\\\'\" \"bar\" \" foo foo\" nil nil 1)
|
2000-03-14 22:57:28 +00:00
|
|
|
|
=> \" bar foo\"
|
|
|
|
|
"
|
2000-02-22 20:16:31 +00:00
|
|
|
|
|
|
|
|
|
;; To avoid excessive consing from multiple matches in long strings,
|
|
|
|
|
;; don't just call `replace-match' continually. Walk down the
|
|
|
|
|
;; string looking for matches of REGEXP and building up a (reversed)
|
|
|
|
|
;; list MATCHES. This comprises segments of STRING which weren't
|
|
|
|
|
;; matched interspersed with replacements for segments that were.
|
2001-10-05 09:26:17 +00:00
|
|
|
|
;; [For a `large' number of replacements it's more efficient to
|
2000-02-22 20:16:31 +00:00
|
|
|
|
;; operate in a temporary buffer; we can't tell from the function's
|
|
|
|
|
;; args whether to choose the buffer-based implementation, though it
|
|
|
|
|
;; might be reasonable to do so for long enough STRING.]
|
|
|
|
|
(let ((l (length string))
|
|
|
|
|
(start (or start 0))
|
|
|
|
|
matches str mb me)
|
|
|
|
|
(save-match-data
|
|
|
|
|
(while (and (< start l) (string-match regexp string start))
|
|
|
|
|
(setq mb (match-beginning 0)
|
|
|
|
|
me (match-end 0))
|
2000-03-08 23:49:09 +00:00
|
|
|
|
;; If we matched the empty string, make sure we advance by one char
|
|
|
|
|
(when (= me mb) (setq me (min l (1+ mb))))
|
|
|
|
|
;; Generate a replacement for the matched substring.
|
|
|
|
|
;; Operate only on the substring to minimize string consing.
|
|
|
|
|
;; Set up match data for the substring for replacement;
|
|
|
|
|
;; presumably this is likely to be faster than munging the
|
|
|
|
|
;; match data directly in Lisp.
|
|
|
|
|
(string-match regexp (setq str (substring string mb me)))
|
|
|
|
|
(setq matches
|
|
|
|
|
(cons (replace-match (if (stringp rep)
|
|
|
|
|
rep
|
|
|
|
|
(funcall rep (match-string 0 str)))
|
|
|
|
|
fixedcase literal str subexp)
|
2007-04-09 23:10:00 +00:00
|
|
|
|
(cons (substring string start mb) ; unmatched prefix
|
2000-03-08 23:49:09 +00:00
|
|
|
|
matches)))
|
|
|
|
|
(setq start me))
|
2000-02-22 20:16:31 +00:00
|
|
|
|
;; Reconstruct a string from the pieces.
|
|
|
|
|
(setq matches (cons (substring string start l) matches)) ; leftover
|
|
|
|
|
(apply #'concat (nreverse matches)))))
|
1996-09-28 04:16:00 +00:00
|
|
|
|
|
2009-11-25 03:59:19 +00:00
|
|
|
|
(defun string-prefix-p (str1 str2 &optional ignore-case)
|
|
|
|
|
"Return non-nil if STR1 is a prefix of STR2.
|
|
|
|
|
If IGNORE-CASE is non-nil, the comparison is done without paying attention
|
|
|
|
|
to case differences."
|
|
|
|
|
(eq t (compare-strings str1 nil nil
|
|
|
|
|
str2 0 (length str1) ignore-case)))
|
|
|
|
|
|
2005-10-22 15:01:08 +00:00
|
|
|
|
;;;; invisibility specs
|
2004-12-06 15:11:51 +00:00
|
|
|
|
|
2005-10-22 15:01:08 +00:00
|
|
|
|
(defun add-to-invisibility-spec (element)
|
|
|
|
|
"Add ELEMENT to `buffer-invisibility-spec'.
|
|
|
|
|
See documentation for `buffer-invisibility-spec' for the kind of elements
|
|
|
|
|
that can be added."
|
|
|
|
|
(if (eq buffer-invisibility-spec t)
|
|
|
|
|
(setq buffer-invisibility-spec (list t)))
|
|
|
|
|
(setq buffer-invisibility-spec
|
|
|
|
|
(cons element buffer-invisibility-spec)))
|
|
|
|
|
|
|
|
|
|
(defun remove-from-invisibility-spec (element)
|
|
|
|
|
"Remove ELEMENT from `buffer-invisibility-spec'."
|
|
|
|
|
(if (consp buffer-invisibility-spec)
|
2007-04-09 23:10:00 +00:00
|
|
|
|
(setq buffer-invisibility-spec
|
|
|
|
|
(delete element buffer-invisibility-spec))))
|
1996-09-28 04:16:00 +00:00
|
|
|
|
|
2005-10-22 15:01:08 +00:00
|
|
|
|
;;;; Syntax tables.
|
|
|
|
|
|
|
|
|
|
(defmacro with-syntax-table (table &rest body)
|
|
|
|
|
"Evaluate BODY with syntax table of current buffer set to TABLE.
|
|
|
|
|
The syntax table of the current buffer is saved, BODY is evaluated, and the
|
|
|
|
|
saved table is restored, even in case of an abnormal exit.
|
|
|
|
|
Value is what BODY returns."
|
|
|
|
|
(declare (debug t))
|
|
|
|
|
(let ((old-table (make-symbol "table"))
|
|
|
|
|
(old-buffer (make-symbol "buffer")))
|
|
|
|
|
`(let ((,old-table (syntax-table))
|
|
|
|
|
(,old-buffer (current-buffer)))
|
|
|
|
|
(unwind-protect
|
|
|
|
|
(progn
|
|
|
|
|
(set-syntax-table ,table)
|
|
|
|
|
,@body)
|
|
|
|
|
(save-current-buffer
|
|
|
|
|
(set-buffer ,old-buffer)
|
|
|
|
|
(set-syntax-table ,old-table))))))
|
1993-12-31 09:25:12 +00:00
|
|
|
|
|
1994-02-08 05:06:07 +00:00
|
|
|
|
(defun make-syntax-table (&optional oldtable)
|
1994-01-03 07:41:00 +00:00
|
|
|
|
"Return a new syntax table.
|
2001-11-08 00:57:57 +00:00
|
|
|
|
Create a syntax table which inherits from OLDTABLE (if non-nil) or
|
|
|
|
|
from `standard-syntax-table' otherwise."
|
|
|
|
|
(let ((table (make-char-table 'syntax-table nil)))
|
|
|
|
|
(set-char-table-parent table (or oldtable (standard-syntax-table)))
|
|
|
|
|
table))
|
1997-03-11 23:55:24 +00:00
|
|
|
|
|
2002-09-09 23:13:18 +00:00
|
|
|
|
(defun syntax-after (pos)
|
2005-04-24 14:50:20 +00:00
|
|
|
|
"Return the raw syntax of the char after POS.
|
|
|
|
|
If POS is outside the buffer's accessible portion, return nil."
|
2002-09-09 23:13:18 +00:00
|
|
|
|
(unless (or (< pos (point-min)) (>= pos (point-max)))
|
2004-11-22 06:00:51 +00:00
|
|
|
|
(let ((st (if parse-sexp-lookup-properties
|
|
|
|
|
(get-char-property pos 'syntax-table))))
|
|
|
|
|
(if (consp st) st
|
|
|
|
|
(aref (or st (syntax-table)) (char-after pos))))))
|
2002-09-09 23:13:18 +00:00
|
|
|
|
|
2005-04-19 18:11:26 +00:00
|
|
|
|
(defun syntax-class (syntax)
|
2005-04-24 14:50:20 +00:00
|
|
|
|
"Return the syntax class part of the syntax descriptor SYNTAX.
|
|
|
|
|
If SYNTAX is nil, return nil."
|
|
|
|
|
(and syntax (logand (car syntax) 65535)))
|
2002-04-19 00:06:54 +00:00
|
|
|
|
|
2005-10-22 15:01:08 +00:00
|
|
|
|
;;;; Text clones
|
2001-10-25 02:26:41 +00:00
|
|
|
|
|
|
|
|
|
(defun text-clone-maintain (ol1 after beg end &optional len)
|
|
|
|
|
"Propagate the changes made under the overlay OL1 to the other clones.
|
|
|
|
|
This is used on the `modification-hooks' property of text clones."
|
|
|
|
|
(when (and after (not undo-in-progress) (overlay-start ol1))
|
|
|
|
|
(let ((margin (if (overlay-get ol1 'text-clone-spreadp) 1 0)))
|
|
|
|
|
(setq beg (max beg (+ (overlay-start ol1) margin)))
|
|
|
|
|
(setq end (min end (- (overlay-end ol1) margin)))
|
|
|
|
|
(when (<= beg end)
|
|
|
|
|
(save-excursion
|
|
|
|
|
(when (overlay-get ol1 'text-clone-syntax)
|
|
|
|
|
;; Check content of the clone's text.
|
|
|
|
|
(let ((cbeg (+ (overlay-start ol1) margin))
|
|
|
|
|
(cend (- (overlay-end ol1) margin)))
|
|
|
|
|
(goto-char cbeg)
|
|
|
|
|
(save-match-data
|
|
|
|
|
(if (not (re-search-forward
|
|
|
|
|
(overlay-get ol1 'text-clone-syntax) cend t))
|
|
|
|
|
;; Mark the overlay for deletion.
|
|
|
|
|
(overlay-put ol1 'text-clones nil)
|
|
|
|
|
(when (< (match-end 0) cend)
|
|
|
|
|
;; Shrink the clone at its end.
|
|
|
|
|
(setq end (min end (match-end 0)))
|
|
|
|
|
(move-overlay ol1 (overlay-start ol1)
|
|
|
|
|
(+ (match-end 0) margin)))
|
|
|
|
|
(when (> (match-beginning 0) cbeg)
|
|
|
|
|
;; Shrink the clone at its beginning.
|
|
|
|
|
(setq beg (max (match-beginning 0) beg))
|
|
|
|
|
(move-overlay ol1 (- (match-beginning 0) margin)
|
|
|
|
|
(overlay-end ol1)))))))
|
|
|
|
|
;; Now go ahead and update the clones.
|
|
|
|
|
(let ((head (- beg (overlay-start ol1)))
|
|
|
|
|
(tail (- (overlay-end ol1) end))
|
|
|
|
|
(str (buffer-substring beg end))
|
|
|
|
|
(nothing-left t)
|
|
|
|
|
(inhibit-modification-hooks t))
|
|
|
|
|
(dolist (ol2 (overlay-get ol1 'text-clones))
|
|
|
|
|
(let ((oe (overlay-end ol2)))
|
|
|
|
|
(unless (or (eq ol1 ol2) (null oe))
|
|
|
|
|
(setq nothing-left nil)
|
|
|
|
|
(let ((mod-beg (+ (overlay-start ol2) head)))
|
|
|
|
|
;;(overlay-put ol2 'modification-hooks nil)
|
|
|
|
|
(goto-char (- (overlay-end ol2) tail))
|
|
|
|
|
(unless (> mod-beg (point))
|
|
|
|
|
(save-excursion (insert str))
|
|
|
|
|
(delete-region mod-beg (point)))
|
|
|
|
|
;;(overlay-put ol2 'modification-hooks '(text-clone-maintain))
|
|
|
|
|
))))
|
|
|
|
|
(if nothing-left (delete-overlay ol1))))))))
|
|
|
|
|
|
|
|
|
|
(defun text-clone-create (start end &optional spreadp syntax)
|
|
|
|
|
"Create a text clone of START...END at point.
|
|
|
|
|
Text clones are chunks of text that are automatically kept identical:
|
|
|
|
|
changes done to one of the clones will be immediately propagated to the other.
|
|
|
|
|
|
|
|
|
|
The buffer's content at point is assumed to be already identical to
|
|
|
|
|
the one between START and END.
|
|
|
|
|
If SYNTAX is provided it's a regexp that describes the possible text of
|
|
|
|
|
the clones; the clone will be shrunk or killed if necessary to ensure that
|
|
|
|
|
its text matches the regexp.
|
|
|
|
|
If SPREADP is non-nil it indicates that text inserted before/after the
|
|
|
|
|
clone should be incorporated in the clone."
|
|
|
|
|
;; To deal with SPREADP we can either use an overlay with `nil t' along
|
|
|
|
|
;; with insert-(behind|in-front-of)-hooks or use a slightly larger overlay
|
|
|
|
|
;; (with a one-char margin at each end) with `t nil'.
|
|
|
|
|
;; We opted for a larger overlay because it behaves better in the case
|
|
|
|
|
;; where the clone is reduced to the empty string (we want the overlay to
|
|
|
|
|
;; stay when the clone's content is the empty string and we want to use
|
|
|
|
|
;; `evaporate' to make sure those overlays get deleted when needed).
|
2002-10-17 15:42:10 +00:00
|
|
|
|
;;
|
2001-10-25 02:26:41 +00:00
|
|
|
|
(let* ((pt-end (+ (point) (- end start)))
|
|
|
|
|
(start-margin (if (or (not spreadp) (bobp) (<= start (point-min)))
|
|
|
|
|
0 1))
|
|
|
|
|
(end-margin (if (or (not spreadp)
|
|
|
|
|
(>= pt-end (point-max))
|
|
|
|
|
(>= start (point-max)))
|
|
|
|
|
0 1))
|
|
|
|
|
(ol1 (make-overlay (- start start-margin) (+ end end-margin) nil t))
|
|
|
|
|
(ol2 (make-overlay (- (point) start-margin) (+ pt-end end-margin) nil t))
|
|
|
|
|
(dups (list ol1 ol2)))
|
|
|
|
|
(overlay-put ol1 'modification-hooks '(text-clone-maintain))
|
|
|
|
|
(when spreadp (overlay-put ol1 'text-clone-spreadp t))
|
|
|
|
|
(when syntax (overlay-put ol1 'text-clone-syntax syntax))
|
|
|
|
|
;;(overlay-put ol1 'face 'underline)
|
|
|
|
|
(overlay-put ol1 'evaporate t)
|
|
|
|
|
(overlay-put ol1 'text-clones dups)
|
2002-10-17 15:42:10 +00:00
|
|
|
|
;;
|
2001-10-25 02:26:41 +00:00
|
|
|
|
(overlay-put ol2 'modification-hooks '(text-clone-maintain))
|
|
|
|
|
(when spreadp (overlay-put ol2 'text-clone-spreadp t))
|
|
|
|
|
(when syntax (overlay-put ol2 'text-clone-syntax syntax))
|
|
|
|
|
;;(overlay-put ol2 'face 'underline)
|
|
|
|
|
(overlay-put ol2 'evaporate t)
|
|
|
|
|
(overlay-put ol2 'text-clones dups)))
|
2005-10-22 15:01:08 +00:00
|
|
|
|
|
|
|
|
|
;;;; Mail user agents.
|
2002-09-11 20:23:56 +00:00
|
|
|
|
|
2005-10-22 15:01:08 +00:00
|
|
|
|
;; Here we include just enough for other packages to be able
|
|
|
|
|
;; to define them.
|
2002-04-07 10:09:39 +00:00
|
|
|
|
|
2002-09-11 20:23:56 +00:00
|
|
|
|
(defun define-mail-user-agent (symbol composefunc sendfunc
|
|
|
|
|
&optional abortfunc hookvar)
|
|
|
|
|
"Define a symbol to identify a mail-sending package for `mail-user-agent'.
|
|
|
|
|
|
|
|
|
|
SYMBOL can be any Lisp symbol. Its function definition and/or
|
|
|
|
|
value as a variable do not matter for this usage; we use only certain
|
|
|
|
|
properties on its property list, to encode the rest of the arguments.
|
|
|
|
|
|
|
|
|
|
COMPOSEFUNC is program callable function that composes an outgoing
|
|
|
|
|
mail message buffer. This function should set up the basics of the
|
|
|
|
|
buffer without requiring user interaction. It should populate the
|
|
|
|
|
standard mail headers, leaving the `to:' and `subject:' headers blank
|
|
|
|
|
by default.
|
|
|
|
|
|
|
|
|
|
COMPOSEFUNC should accept several optional arguments--the same
|
|
|
|
|
arguments that `compose-mail' takes. See that function's documentation.
|
|
|
|
|
|
|
|
|
|
SENDFUNC is the command a user would run to send the message.
|
|
|
|
|
|
|
|
|
|
Optional ABORTFUNC is the command a user would run to abort the
|
|
|
|
|
message. For mail packages that don't have a separate abort function,
|
|
|
|
|
this can be `kill-buffer' (the equivalent of omitting this argument).
|
|
|
|
|
|
|
|
|
|
Optional HOOKVAR is a hook variable that gets run before the message
|
|
|
|
|
is actually sent. Callers that use the `mail-user-agent' may
|
|
|
|
|
install a hook function temporarily on this hook variable.
|
|
|
|
|
If HOOKVAR is nil, `mail-send-hook' is used.
|
|
|
|
|
|
|
|
|
|
The properties used on SYMBOL are `composefunc', `sendfunc',
|
|
|
|
|
`abortfunc', and `hookvar'."
|
|
|
|
|
(put symbol 'composefunc composefunc)
|
|
|
|
|
(put symbol 'sendfunc sendfunc)
|
|
|
|
|
(put symbol 'abortfunc (or abortfunc 'kill-buffer))
|
|
|
|
|
(put symbol 'hookvar (or hookvar 'mail-send-hook)))
|
2005-10-22 15:01:08 +00:00
|
|
|
|
|
|
|
|
|
;;;; Progress reporters.
|
2004-10-08 17:23:40 +00:00
|
|
|
|
|
|
|
|
|
;; Progress reporter has the following structure:
|
|
|
|
|
;;
|
|
|
|
|
;; (NEXT-UPDATE-VALUE . [NEXT-UPDATE-TIME
|
|
|
|
|
;; MIN-VALUE
|
|
|
|
|
;; MAX-VALUE
|
|
|
|
|
;; MESSAGE
|
|
|
|
|
;; MIN-CHANGE
|
|
|
|
|
;; MIN-TIME])
|
|
|
|
|
;;
|
|
|
|
|
;; This weirdeness is for optimization reasons: we want
|
|
|
|
|
;; `progress-reporter-update' to be as fast as possible, so
|
|
|
|
|
;; `(car reporter)' is better than `(aref reporter 0)'.
|
|
|
|
|
;;
|
|
|
|
|
;; NEXT-UPDATE-TIME is a float. While `float-time' loses a couple
|
|
|
|
|
;; digits of precision, it doesn't really matter here. On the other
|
|
|
|
|
;; hand, it greatly simplifies the code.
|
|
|
|
|
|
2004-10-09 21:50:57 +00:00
|
|
|
|
(defsubst progress-reporter-update (reporter value)
|
|
|
|
|
"Report progress of an operation in the echo area.
|
|
|
|
|
However, if the change since last echo area update is too small
|
|
|
|
|
or not enough time has passed, then do nothing (see
|
|
|
|
|
`make-progress-reporter' for details).
|
|
|
|
|
|
|
|
|
|
First parameter, REPORTER, should be the result of a call to
|
|
|
|
|
`make-progress-reporter'. Second, VALUE, determines the actual
|
|
|
|
|
progress of operation; it must be between MIN-VALUE and MAX-VALUE
|
|
|
|
|
as passed to `make-progress-reporter'.
|
|
|
|
|
|
|
|
|
|
This function is very inexpensive, you may not bother how often
|
|
|
|
|
you call it."
|
|
|
|
|
(when (>= value (car reporter))
|
|
|
|
|
(progress-reporter-do-update reporter value)))
|
|
|
|
|
|
2004-10-08 17:23:40 +00:00
|
|
|
|
(defun make-progress-reporter (message min-value max-value
|
|
|
|
|
&optional current-value
|
|
|
|
|
min-change min-time)
|
2005-01-19 23:44:48 +00:00
|
|
|
|
"Return progress reporter object to be used with `progress-reporter-update'.
|
2004-10-08 17:23:40 +00:00
|
|
|
|
|
|
|
|
|
MESSAGE is shown in the echo area. When at least 1% of operation
|
|
|
|
|
is complete, the exact percentage will be appended to the
|
|
|
|
|
MESSAGE. When you call `progress-reporter-done', word \"done\"
|
|
|
|
|
is printed after the MESSAGE. You can change MESSAGE of an
|
|
|
|
|
existing progress reporter with `progress-reporter-force-update'.
|
|
|
|
|
|
|
|
|
|
MIN-VALUE and MAX-VALUE designate starting (0% complete) and
|
|
|
|
|
final (100% complete) states of operation. The latter should be
|
|
|
|
|
larger; if this is not the case, then simply negate all values.
|
|
|
|
|
Optional CURRENT-VALUE specifies the progress by the moment you
|
|
|
|
|
call this function. You should omit it or set it to nil in most
|
|
|
|
|
cases since it defaults to MIN-VALUE.
|
|
|
|
|
|
|
|
|
|
Optional MIN-CHANGE determines the minimal change in percents to
|
|
|
|
|
report (default is 1%.) Optional MIN-TIME specifies the minimal
|
|
|
|
|
time before echo area updates (default is 0.2 seconds.) If
|
|
|
|
|
`float-time' function is not present, then time is not tracked
|
|
|
|
|
at all. If OS is not capable of measuring fractions of seconds,
|
|
|
|
|
then this parameter is effectively rounded up."
|
|
|
|
|
|
|
|
|
|
(unless min-time
|
|
|
|
|
(setq min-time 0.2))
|
|
|
|
|
(let ((reporter
|
|
|
|
|
(cons min-value ;; Force a call to `message' now
|
|
|
|
|
(vector (if (and (fboundp 'float-time)
|
|
|
|
|
(>= min-time 0.02))
|
|
|
|
|
(float-time) nil)
|
|
|
|
|
min-value
|
|
|
|
|
max-value
|
|
|
|
|
message
|
|
|
|
|
(if min-change (max (min min-change 50) 1) 1)
|
|
|
|
|
min-time))))
|
|
|
|
|
(progress-reporter-update reporter (or current-value min-value))
|
|
|
|
|
reporter))
|
|
|
|
|
|
|
|
|
|
(defun progress-reporter-force-update (reporter value &optional new-message)
|
|
|
|
|
"Report progress of an operation in the echo area unconditionally.
|
|
|
|
|
|
|
|
|
|
First two parameters are the same as for
|
|
|
|
|
`progress-reporter-update'. Optional NEW-MESSAGE allows you to
|
|
|
|
|
change the displayed message."
|
|
|
|
|
(let ((parameters (cdr reporter)))
|
|
|
|
|
(when new-message
|
|
|
|
|
(aset parameters 3 new-message))
|
|
|
|
|
(when (aref parameters 0)
|
|
|
|
|
(aset parameters 0 (float-time)))
|
|
|
|
|
(progress-reporter-do-update reporter value)))
|
|
|
|
|
|
|
|
|
|
(defun progress-reporter-do-update (reporter value)
|
|
|
|
|
(let* ((parameters (cdr reporter))
|
|
|
|
|
(min-value (aref parameters 1))
|
|
|
|
|
(max-value (aref parameters 2))
|
|
|
|
|
(one-percent (/ (- max-value min-value) 100.0))
|
2005-03-20 20:59:52 +00:00
|
|
|
|
(percentage (if (= max-value min-value)
|
|
|
|
|
0
|
|
|
|
|
(truncate (/ (- value min-value) one-percent))))
|
2004-10-08 17:23:40 +00:00
|
|
|
|
(update-time (aref parameters 0))
|
|
|
|
|
(current-time (float-time))
|
|
|
|
|
(enough-time-passed
|
|
|
|
|
;; See if enough time has passed since the last update.
|
|
|
|
|
(or (not update-time)
|
|
|
|
|
(when (>= current-time update-time)
|
|
|
|
|
;; Calculate time for the next update
|
|
|
|
|
(aset parameters 0 (+ update-time (aref parameters 5)))))))
|
|
|
|
|
;;
|
|
|
|
|
;; Calculate NEXT-UPDATE-VALUE. If we are not going to print
|
|
|
|
|
;; message this time because not enough time has passed, then use
|
|
|
|
|
;; 1 instead of MIN-CHANGE. This makes delays between echo area
|
|
|
|
|
;; updates closer to MIN-TIME.
|
|
|
|
|
(setcar reporter
|
|
|
|
|
(min (+ min-value (* (+ percentage
|
|
|
|
|
(if enough-time-passed
|
|
|
|
|
(aref parameters 4) ;; MIN-CHANGE
|
|
|
|
|
1))
|
|
|
|
|
one-percent))
|
|
|
|
|
max-value))
|
|
|
|
|
(when (integerp value)
|
|
|
|
|
(setcar reporter (ceiling (car reporter))))
|
|
|
|
|
;;
|
|
|
|
|
;; Only print message if enough time has passed
|
|
|
|
|
(when enough-time-passed
|
|
|
|
|
(if (> percentage 0)
|
|
|
|
|
(message "%s%d%%" (aref parameters 3) percentage)
|
|
|
|
|
(message "%s" (aref parameters 3))))))
|
|
|
|
|
|
|
|
|
|
(defun progress-reporter-done (reporter)
|
|
|
|
|
"Print reporter's message followed by word \"done\" in echo area."
|
|
|
|
|
(message "%sdone" (aref (cdr reporter) 3)))
|
|
|
|
|
|
2005-01-19 23:44:48 +00:00
|
|
|
|
(defmacro dotimes-with-progress-reporter (spec message &rest body)
|
|
|
|
|
"Loop a certain number of times and report progress in the echo area.
|
|
|
|
|
Evaluate BODY with VAR bound to successive integers running from
|
|
|
|
|
0, inclusive, to COUNT, exclusive. Then evaluate RESULT to get
|
|
|
|
|
the return value (nil if RESULT is omitted).
|
|
|
|
|
|
|
|
|
|
At each iteration MESSAGE followed by progress percentage is
|
|
|
|
|
printed in the echo area. After the loop is finished, MESSAGE
|
|
|
|
|
followed by word \"done\" is printed. This macro is a
|
|
|
|
|
convenience wrapper around `make-progress-reporter' and friends.
|
|
|
|
|
|
|
|
|
|
\(fn (VAR COUNT [RESULT]) MESSAGE BODY...)"
|
|
|
|
|
(declare (indent 2) (debug ((symbolp form &optional form) form body)))
|
|
|
|
|
(let ((temp (make-symbol "--dotimes-temp--"))
|
|
|
|
|
(temp2 (make-symbol "--dotimes-temp2--"))
|
|
|
|
|
(start 0)
|
|
|
|
|
(end (nth 1 spec)))
|
|
|
|
|
`(let ((,temp ,end)
|
|
|
|
|
(,(car spec) ,start)
|
|
|
|
|
(,temp2 (make-progress-reporter ,message ,start ,end)))
|
|
|
|
|
(while (< ,(car spec) ,temp)
|
|
|
|
|
,@body
|
|
|
|
|
(progress-reporter-update ,temp2
|
|
|
|
|
(setq ,(car spec) (1+ ,(car spec)))))
|
|
|
|
|
(progress-reporter-done ,temp2)
|
|
|
|
|
nil ,@(cdr (cdr spec)))))
|
2005-08-26 12:31:55 +00:00
|
|
|
|
|
2005-08-25 01:37:47 +00:00
|
|
|
|
|
2005-10-22 15:01:08 +00:00
|
|
|
|
;;;; Comparing version strings.
|
2005-08-25 01:37:47 +00:00
|
|
|
|
|
2009-11-11 06:36:41 +00:00
|
|
|
|
(defconst version-separator "."
|
2005-08-25 01:37:47 +00:00
|
|
|
|
"*Specify the string used to separate the version elements.
|
|
|
|
|
|
|
|
|
|
Usually the separator is \".\", but it can be any other string.")
|
|
|
|
|
|
|
|
|
|
|
2009-11-11 06:36:41 +00:00
|
|
|
|
(defconst version-regexp-alist
|
2005-12-12 14:23:06 +00:00
|
|
|
|
'(("^[-_+ ]?a\\(lpha\\)?$" . -3)
|
2007-04-09 23:10:00 +00:00
|
|
|
|
("^[-_+]$" . -3) ; treat "1.2.3-20050920" and "1.2-3" as alpha releases
|
2006-09-20 20:46:33 +00:00
|
|
|
|
("^[-_+ ]cvs$" . -3) ; treat "1.2.3-CVS" as alpha release
|
2005-12-12 14:23:06 +00:00
|
|
|
|
("^[-_+ ]?b\\(eta\\)?$" . -2)
|
|
|
|
|
("^[-_+ ]?\\(pre\\|rc\\)$" . -1))
|
2010-03-27 12:31:04 +00:00
|
|
|
|
"*Specify association between non-numeric version and its priority.
|
2005-08-25 01:37:47 +00:00
|
|
|
|
|
|
|
|
|
This association is used to handle version string like \"1.0pre2\",
|
|
|
|
|
\"0.9alpha1\", etc. It's used by `version-to-list' (which see) to convert the
|
2010-03-27 12:31:04 +00:00
|
|
|
|
non-numeric part of a version string to an integer. For example:
|
2005-08-25 01:37:47 +00:00
|
|
|
|
|
|
|
|
|
String Version Integer List Version
|
|
|
|
|
\"1.0pre2\" (1 0 -1 2)
|
|
|
|
|
\"1.0PRE2\" (1 0 -1 2)
|
|
|
|
|
\"22.8beta3\" (22 8 -2 3)
|
2005-12-12 14:23:06 +00:00
|
|
|
|
\"22.8 Beta3\" (22 8 -2 3)
|
2005-08-25 01:37:47 +00:00
|
|
|
|
\"0.9alpha1\" (0 9 -3 1)
|
|
|
|
|
\"0.9AlphA1\" (0 9 -3 1)
|
2005-12-12 14:23:06 +00:00
|
|
|
|
\"0.9 alpha\" (0 9 -3)
|
2005-08-25 01:37:47 +00:00
|
|
|
|
|
|
|
|
|
Each element has the following form:
|
|
|
|
|
|
|
|
|
|
(REGEXP . PRIORITY)
|
|
|
|
|
|
|
|
|
|
Where:
|
|
|
|
|
|
|
|
|
|
REGEXP regexp used to match non-numeric part of a version string.
|
2010-03-27 12:31:04 +00:00
|
|
|
|
It should begin with the `^' anchor and end with a `$' to
|
2005-09-24 10:41:18 +00:00
|
|
|
|
prevent false hits. Letter-case is ignored while matching
|
|
|
|
|
REGEXP.
|
2005-08-25 01:37:47 +00:00
|
|
|
|
|
2010-03-27 12:31:04 +00:00
|
|
|
|
PRIORITY a negative integer specifying non-numeric priority of REGEXP.")
|
2005-08-25 01:37:47 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(defun version-to-list (ver)
|
2010-03-27 12:31:04 +00:00
|
|
|
|
"Convert version string VER into a list of integers.
|
2005-08-25 01:37:47 +00:00
|
|
|
|
|
|
|
|
|
The version syntax is given by the following EBNF:
|
|
|
|
|
|
|
|
|
|
VERSION ::= NUMBER ( SEPARATOR NUMBER )*.
|
|
|
|
|
|
|
|
|
|
NUMBER ::= (0|1|2|3|4|5|6|7|8|9)+.
|
|
|
|
|
|
|
|
|
|
SEPARATOR ::= `version-separator' (which see)
|
|
|
|
|
| `version-regexp-alist' (which see).
|
|
|
|
|
|
2005-09-24 10:41:18 +00:00
|
|
|
|
The NUMBER part is optional if SEPARATOR is a match for an element
|
|
|
|
|
in `version-regexp-alist'.
|
|
|
|
|
|
2010-03-27 12:31:04 +00:00
|
|
|
|
Examples of valid version syntax:
|
2005-08-25 01:37:47 +00:00
|
|
|
|
|
2005-09-24 10:41:18 +00:00
|
|
|
|
1.0pre2 1.0.7.5 22.8beta3 0.9alpha1 6.9.30Beta
|
2005-08-25 01:37:47 +00:00
|
|
|
|
|
2010-03-27 12:31:04 +00:00
|
|
|
|
Examples of invalid version syntax:
|
2005-08-25 01:37:47 +00:00
|
|
|
|
|
|
|
|
|
1.0prepre2 1.0..7.5 22.8X3 alpha3.2 .5
|
|
|
|
|
|
2010-03-27 12:31:04 +00:00
|
|
|
|
Examples of version conversion:
|
2005-08-25 01:37:47 +00:00
|
|
|
|
|
2010-03-27 12:31:04 +00:00
|
|
|
|
Version String Version as a List of Integers
|
2005-08-25 01:37:47 +00:00
|
|
|
|
\"1.0.7.5\" (1 0 7 5)
|
|
|
|
|
\"1.0pre2\" (1 0 -1 2)
|
|
|
|
|
\"1.0PRE2\" (1 0 -1 2)
|
|
|
|
|
\"22.8beta3\" (22 8 -2 3)
|
|
|
|
|
\"22.8Beta3\" (22 8 -2 3)
|
|
|
|
|
\"0.9alpha1\" (0 9 -3 1)
|
|
|
|
|
\"0.9AlphA1\" (0 9 -3 1)
|
|
|
|
|
\"0.9alpha\" (0 9 -3)
|
|
|
|
|
|
|
|
|
|
See documentation for `version-separator' and `version-regexp-alist'."
|
2005-12-12 14:23:06 +00:00
|
|
|
|
(or (and (stringp ver) (> (length ver) 0))
|
2005-08-25 01:37:47 +00:00
|
|
|
|
(error "Invalid version string: '%s'" ver))
|
2005-12-12 14:23:06 +00:00
|
|
|
|
;; Change .x.y to 0.x.y
|
|
|
|
|
(if (and (>= (length ver) (length version-separator))
|
|
|
|
|
(string-equal (substring ver 0 (length version-separator))
|
2007-04-09 23:10:00 +00:00
|
|
|
|
version-separator))
|
2005-12-12 14:23:06 +00:00
|
|
|
|
(setq ver (concat "0" ver)))
|
2005-08-25 01:37:47 +00:00
|
|
|
|
(save-match-data
|
|
|
|
|
(let ((i 0)
|
2005-09-24 10:41:18 +00:00
|
|
|
|
(case-fold-search t) ; ignore case in matching
|
2005-08-25 01:37:47 +00:00
|
|
|
|
lst s al)
|
|
|
|
|
(while (and (setq s (string-match "[0-9]+" ver i))
|
|
|
|
|
(= s i))
|
|
|
|
|
;; handle numeric part
|
|
|
|
|
(setq lst (cons (string-to-number (substring ver i (match-end 0)))
|
|
|
|
|
lst)
|
|
|
|
|
i (match-end 0))
|
|
|
|
|
;; handle non-numeric part
|
|
|
|
|
(when (and (setq s (string-match "[^0-9]+" ver i))
|
|
|
|
|
(= s i))
|
|
|
|
|
(setq s (substring ver i (match-end 0))
|
|
|
|
|
i (match-end 0))
|
|
|
|
|
;; handle alpha, beta, pre, etc. separator
|
|
|
|
|
(unless (string= s version-separator)
|
|
|
|
|
(setq al version-regexp-alist)
|
|
|
|
|
(while (and al (not (string-match (caar al) s)))
|
|
|
|
|
(setq al (cdr al)))
|
|
|
|
|
(or al (error "Invalid version syntax: '%s'" ver))
|
|
|
|
|
(setq lst (cons (cdar al) lst)))))
|
|
|
|
|
(if (null lst)
|
|
|
|
|
(error "Invalid version syntax: '%s'" ver)
|
|
|
|
|
(nreverse lst)))))
|
|
|
|
|
|
|
|
|
|
|
2005-08-26 12:31:55 +00:00
|
|
|
|
(defun version-list-< (l1 l2)
|
2010-03-27 12:31:04 +00:00
|
|
|
|
"Return t if L1, a list specification of a version, is lower than L2.
|
2005-08-25 01:37:47 +00:00
|
|
|
|
|
2010-03-27 12:31:04 +00:00
|
|
|
|
Note that a version specified by the list (1) is equal to (1 0),
|
|
|
|
|
\(1 0 0), (1 0 0 0), etc. That is, the trailing zeros are insignificant.
|
|
|
|
|
Also, a version given by the list (1) is higher than (1 -1), which in
|
|
|
|
|
turn is higher than (1 -2), which is higher than (1 -3)."
|
2005-08-25 01:37:47 +00:00
|
|
|
|
(while (and l1 l2 (= (car l1) (car l2)))
|
|
|
|
|
(setq l1 (cdr l1)
|
|
|
|
|
l2 (cdr l2)))
|
|
|
|
|
(cond
|
|
|
|
|
;; l1 not null and l2 not null
|
|
|
|
|
((and l1 l2) (< (car l1) (car l2)))
|
|
|
|
|
;; l1 null and l2 null ==> l1 length = l2 length
|
|
|
|
|
((and (null l1) (null l2)) nil)
|
|
|
|
|
;; l1 not null and l2 null ==> l1 length > l2 length
|
2005-08-26 12:31:55 +00:00
|
|
|
|
(l1 (< (version-list-not-zero l1) 0))
|
2005-08-25 01:37:47 +00:00
|
|
|
|
;; l1 null and l2 not null ==> l2 length > l1 length
|
2005-08-26 12:31:55 +00:00
|
|
|
|
(t (< 0 (version-list-not-zero l2)))))
|
2005-08-25 01:37:47 +00:00
|
|
|
|
|
|
|
|
|
|
2005-08-26 12:31:55 +00:00
|
|
|
|
(defun version-list-= (l1 l2)
|
2010-03-27 12:31:04 +00:00
|
|
|
|
"Return t if L1, a list specification of a version, is equal to L2.
|
2005-08-25 01:37:47 +00:00
|
|
|
|
|
2010-03-27 12:31:04 +00:00
|
|
|
|
Note that a version specified by the list (1) is equal to (1 0),
|
|
|
|
|
\(1 0 0), (1 0 0 0), etc. That is, the trailing zeros are insignificant.
|
|
|
|
|
Also, a version given by the list (1) is higher than (1 -1), which in
|
|
|
|
|
turn is higher than (1 -2), which is higher than (1 -3)."
|
2005-08-25 01:37:47 +00:00
|
|
|
|
(while (and l1 l2 (= (car l1) (car l2)))
|
|
|
|
|
(setq l1 (cdr l1)
|
|
|
|
|
l2 (cdr l2)))
|
|
|
|
|
(cond
|
|
|
|
|
;; l1 not null and l2 not null
|
|
|
|
|
((and l1 l2) nil)
|
|
|
|
|
;; l1 null and l2 null ==> l1 length = l2 length
|
|
|
|
|
((and (null l1) (null l2)))
|
|
|
|
|
;; l1 not null and l2 null ==> l1 length > l2 length
|
2005-08-26 12:31:55 +00:00
|
|
|
|
(l1 (zerop (version-list-not-zero l1)))
|
2005-08-25 01:37:47 +00:00
|
|
|
|
;; l1 null and l2 not null ==> l2 length > l1 length
|
2005-08-26 12:31:55 +00:00
|
|
|
|
(t (zerop (version-list-not-zero l2)))))
|
2005-08-25 01:37:47 +00:00
|
|
|
|
|
|
|
|
|
|
2005-08-26 12:31:55 +00:00
|
|
|
|
(defun version-list-<= (l1 l2)
|
2010-03-27 12:31:04 +00:00
|
|
|
|
"Return t if L1, a list specification of a version, is lower or equal to L2.
|
2005-08-25 01:37:47 +00:00
|
|
|
|
|
|
|
|
|
Note that integer list (1) is equal to (1 0), (1 0 0), (1 0 0 0),
|
|
|
|
|
etc. That is, the trailing zeroes are irrelevant. Also, integer
|
|
|
|
|
list (1) is greater than (1 -1) which is greater than (1 -2)
|
|
|
|
|
which is greater than (1 -3)."
|
|
|
|
|
(while (and l1 l2 (= (car l1) (car l2)))
|
|
|
|
|
(setq l1 (cdr l1)
|
|
|
|
|
l2 (cdr l2)))
|
|
|
|
|
(cond
|
|
|
|
|
;; l1 not null and l2 not null
|
|
|
|
|
((and l1 l2) (< (car l1) (car l2)))
|
|
|
|
|
;; l1 null and l2 null ==> l1 length = l2 length
|
|
|
|
|
((and (null l1) (null l2)))
|
|
|
|
|
;; l1 not null and l2 null ==> l1 length > l2 length
|
2005-08-26 12:31:55 +00:00
|
|
|
|
(l1 (<= (version-list-not-zero l1) 0))
|
2005-08-25 01:37:47 +00:00
|
|
|
|
;; l1 null and l2 not null ==> l2 length > l1 length
|
2005-08-26 12:31:55 +00:00
|
|
|
|
(t (<= 0 (version-list-not-zero l2)))))
|
2005-08-25 01:37:47 +00:00
|
|
|
|
|
2005-08-26 12:31:55 +00:00
|
|
|
|
(defun version-list-not-zero (lst)
|
2010-03-27 12:31:04 +00:00
|
|
|
|
"Return the first non-zero element of LST, which is a list of integers.
|
2005-08-25 01:37:47 +00:00
|
|
|
|
|
2010-03-27 12:31:04 +00:00
|
|
|
|
If all LST elements are zeros or LST is nil, return zero."
|
2005-08-26 12:31:55 +00:00
|
|
|
|
(while (and lst (zerop (car lst)))
|
|
|
|
|
(setq lst (cdr lst)))
|
|
|
|
|
(if lst
|
|
|
|
|
(car lst)
|
|
|
|
|
;; there is no element different of zero
|
|
|
|
|
0))
|
2005-08-25 01:37:47 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(defun version< (v1 v2)
|
2010-03-27 12:31:04 +00:00
|
|
|
|
"Return t if version V1 is lower (older) than V2.
|
2005-08-25 01:37:47 +00:00
|
|
|
|
|
|
|
|
|
Note that version string \"1\" is equal to \"1.0\", \"1.0.0\", \"1.0.0.0\",
|
2010-03-27 12:31:04 +00:00
|
|
|
|
etc. That is, the trailing \".0\"s are insignificant. Also, version
|
|
|
|
|
string \"1\" is higher (newer) than \"1pre\", which is higher than \"1beta\",
|
|
|
|
|
which is higher than \"1alpha\"."
|
2005-08-26 12:31:55 +00:00
|
|
|
|
(version-list-< (version-to-list v1) (version-to-list v2)))
|
2005-08-25 01:37:47 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(defun version<= (v1 v2)
|
2010-03-27 12:31:04 +00:00
|
|
|
|
"Return t if version V1 is lower (older) than or equal to V2.
|
2005-08-25 01:37:47 +00:00
|
|
|
|
|
|
|
|
|
Note that version string \"1\" is equal to \"1.0\", \"1.0.0\", \"1.0.0.0\",
|
2010-03-27 12:31:04 +00:00
|
|
|
|
etc. That is, the trailing \".0\"s are insignificant.. Also, version
|
|
|
|
|
string \"1\" is higher (newer) than \"1pre\", which is higher than \"1beta\",
|
|
|
|
|
which is higher than \"1alpha\"."
|
2005-08-26 12:31:55 +00:00
|
|
|
|
(version-list-<= (version-to-list v1) (version-to-list v2)))
|
2005-08-25 01:37:47 +00:00
|
|
|
|
|
2005-08-26 12:31:55 +00:00
|
|
|
|
(defun version= (v1 v2)
|
|
|
|
|
"Return t if version V1 is equal to V2.
|
2005-08-25 01:37:47 +00:00
|
|
|
|
|
2005-08-26 12:31:55 +00:00
|
|
|
|
Note that version string \"1\" is equal to \"1.0\", \"1.0.0\", \"1.0.0.0\",
|
2010-03-27 12:31:04 +00:00
|
|
|
|
etc. That is, the trailing \".0\"s are insignificant.. Also, version
|
|
|
|
|
string \"1\" is higher (newer) than \"1pre\", which is higher than \"1beta\",
|
|
|
|
|
which is higher than \"1alpha\"."
|
2005-08-26 12:31:55 +00:00
|
|
|
|
(version-list-= (version-to-list v1) (version-to-list v2)))
|
2005-08-25 01:37:47 +00:00
|
|
|
|
|
2009-08-09 02:57:45 +00:00
|
|
|
|
|
|
|
|
|
;;; Misc.
|
2009-11-11 05:57:51 +00:00
|
|
|
|
(defconst menu-bar-separator '("--")
|
|
|
|
|
"Separator for menus.")
|
2009-08-09 02:57:45 +00:00
|
|
|
|
|
|
|
|
|
;; The following statement ought to be in print.c, but `provide' can't
|
|
|
|
|
;; be used there.
|
|
|
|
|
(when (hash-table-p (car (read-from-string
|
|
|
|
|
(prin1-to-string (make-hash-table)))))
|
|
|
|
|
(provide 'hashtable-print-readable))
|
|
|
|
|
|
2004-09-19 06:07:38 +00:00
|
|
|
|
;; arch-tag: f7e0e6e5-70aa-4897-ae72-7a3511ec40bc
|
1992-07-15 21:31:44 +00:00
|
|
|
|
;;; subr.el ends here
|