Mercurial > hg > xemacs-beta
annotate lisp/subr.el @ 4787:2302bb5fa67d
Goodbye dk.xemacs.org
| author | Adrian Aichner <adrian@xemacs.org> |
|---|---|
| date | Mon, 21 Dec 2009 19:21:30 +0100 |
| parents | eecd28508f4a |
| children | fd36a980d701 |
| rev | line source |
|---|---|
| 428 | 1 ;;; subr.el --- basic lisp subroutines for XEmacs |
| 2 | |
| 2525 | 3 ;; Copyright (C) 1985, 86, 92, 94, 95, 99, 2000, 2001, 2002, 2003 |
| 4 ;; Free Software Foundation, Inc. | |
| 428 | 5 ;; Copyright (C) 1995 Tinker Systems and INS Engineering Corp. |
| 6 ;; Copyright (C) 1995 Sun Microsystems. | |
| 1333 | 7 ;; Copyright (C) 2000, 2001, 2002, 2003 Ben Wing. |
| 428 | 8 |
| 9 ;; Maintainer: XEmacs Development Team | |
| 2525 | 10 ;; Keywords: extensions, dumped, internal |
| 428 | 11 |
| 12 ;; This file is part of XEmacs. | |
| 13 | |
| 14 ;; XEmacs is free software; you can redistribute it and/or modify it | |
| 15 ;; under the terms of the GNU General Public License as published by | |
| 16 ;; the Free Software Foundation; either version 2, or (at your option) | |
| 17 ;; any later version. | |
| 18 | |
| 19 ;; XEmacs is distributed in the hope that it will be useful, but | |
| 20 ;; WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
| 22 ;; General Public License for more details. | |
| 23 | |
| 24 ;; You should have received a copy of the GNU General Public License | |
| 25 ;; along with XEmacs; see the file COPYING. If not, write to the Free | |
| 3000 | 26 ;; Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 27 ;; Boston, MA 02110-1301, USA. | |
| 428 | 28 |
| 1333 | 29 ;;; Synched up with: FSF 19.34. Some things synched up with later versions. |
| 428 | 30 |
| 31 ;;; Commentary: | |
| 32 | |
| 33 ;; This file is dumped with XEmacs. | |
| 34 | |
| 35 ;; There's not a whole lot in common now with the FSF version, | |
| 36 ;; be wary when applying differences. I've left in a number of lines | |
| 37 ;; of commentary just to give diff(1) something to synch itself with to | |
| 38 ;; provide useful context diffs. -sb | |
| 39 | |
| 1333 | 40 ;; BEGIN SYNCHED WITH FSF 21.2 |
| 41 | |
| 428 | 42 ;;; Code: |
| 1333 | 43 (defvar custom-declare-variable-list nil |
| 44 "Record `defcustom' calls made before `custom.el' is loaded to handle them. | |
| 45 Each element of this list holds the arguments to one call to `defcustom'.") | |
| 428 | 46 |
| 1333 | 47 ;; Use this, rather than defcustom, in subr.el and other files loaded |
| 1336 | 48 ;; before custom.el. See dumped-lisp.el. |
| 1333 | 49 (defun custom-declare-variable-early (&rest arguments) |
| 50 (setq custom-declare-variable-list | |
| 51 (cons arguments custom-declare-variable-list))) | |
| 2525 | 52 |
| 53 | |
| 54 (defun macro-declaration-function (macro decl) | |
| 55 "Process a declaration found in a macro definition. | |
| 56 This is set as the value of the variable `macro-declaration-function'. | |
| 57 MACRO is the name of the macro being defined. | |
| 58 DECL is a list `(declare ...)' containing the declarations. | |
| 59 The return value of this function is not used." | |
| 60 (dolist (d (cdr decl)) | |
| 61 (cond ((and (consp d) (eq (car d) 'indent)) | |
| 62 (put macro 'lisp-indent-function (cadr d))) | |
| 63 ((and (consp d) (eq (car d) 'debug)) | |
| 64 (put macro 'edebug-form-spec (cadr d))) | |
| 65 (t | |
| 66 (message "Unknown declaration %s" d))))) | |
| 67 | |
| 68 (setq macro-declaration-function 'macro-declaration-function) | |
| 69 | |
| 428 | 70 |
| 71 ;;;; Lisp language features. | |
| 72 | |
| 73 (defmacro lambda (&rest cdr) | |
| 74 "Return a lambda expression. | |
| 75 A call of the form (lambda ARGS DOCSTRING INTERACTIVE BODY) is | |
| 76 self-quoting; the result of evaluating the lambda expression is the | |
| 77 expression itself. The lambda expression may then be treated as a | |
| 78 function, i.e., stored as the function value of a symbol, passed to | |
| 79 funcall or mapcar, etc. | |
| 80 | |
| 81 ARGS should take the same form as an argument list for a `defun'. | |
| 3842 | 82 Optional DOCSTRING is a documentation string. |
| 83 If present, it should describe how to call the function. Docstrings are | |
| 84 rarely useful unless the lambda will be named, eg, using `fset'. | |
| 85 Optional INTERACTIVE should be a call to the function `interactive'. | |
| 86 BODY should be a list of lisp expressions. | |
| 87 | |
| 88 The byte-compiler treats lambda expressions specially. If the lambda | |
| 89 expression is syntactically a function to be called, it will be compiled | |
| 90 unless protected by `quote'. Conversely, quoting a lambda expression with | |
| 91 `function' hints to the byte-compiler that it should compile the expression. | |
| 92 \(The byte-compiler may or may not actually compile it; for example it will | |
| 93 never compile lambdas nested in a data structure: `'(#'(lambda (x) x))'). | |
| 94 | |
| 95 The byte-compiler will warn about common problems such as the form | |
| 96 `(fset 'f '(lambda (x) x))' (the lambda cannot be byte-compiled; probably | |
| 97 the programmer intended `#'', although leaving the lambda unquoted will | |
| 98 normally suffice), but in general is it the programmer's responsibility to | |
| 99 quote lambda expressions appropriately." | |
| 428 | 100 `(function (lambda ,@cdr))) |
| 101 | |
| 1333 | 102 ;; FSF 21.2 has various basic macros here. We don't because they're either |
| 103 ;; in cl*.el (which we dump and hence is always available) or built-in. | |
| 104 | |
| 105 ;; More powerful versions in cl.el. | |
| 106 ;(defmacro push (newelt listname) | |
| 107 ;(defmacro pop (listname) | |
| 108 | |
| 109 ;; Built-in. | |
| 110 ;(defmacro when (cond &rest body) | |
| 111 ;(defmacro unless (cond &rest body) | |
| 112 | |
| 113 ;; More powerful versions in cl-macs.el. | |
| 114 ;(defmacro dolist (spec &rest body) | |
| 115 ;(defmacro dotimes (spec &rest body) | |
| 116 | |
| 117 ;; In cl.el. Ours are defun, but cl arranges for them to be inlined anyway. | |
| 118 ;(defsubst caar (x) | |
| 119 ;(defsubst cadr (x) | |
| 120 ;(defsubst cdar (x) | |
| 121 ;(defsubst cddr (x) | |
| 122 | |
| 123 ;; Built-in. Our `last' is more powerful in that it handles circularity. | |
| 124 ;(defun last (x &optional n) | |
| 125 ;(defun butlast (x &optional n) | |
| 126 ;(defun nbutlast (x &optional n) | |
| 127 | |
| 128 ;; In cl-seq.el. | |
| 129 ;(defun remove (elt seq) | |
| 130 ;(defun remq (elt list) | |
| 131 | |
| 428 | 132 (defmacro defun-when-void (&rest args) |
| 133 "Define a function, just like `defun', unless it's already defined. | |
| 134 Used for compatibility among different emacs variants." | |
| 135 `(if (fboundp ',(car args)) | |
| 136 nil | |
| 137 (defun ,@args))) | |
| 138 | |
| 139 (defmacro define-function-when-void (&rest args) | |
| 140 "Define a function, just like `define-function', unless it's already defined. | |
| 141 Used for compatibility among different emacs variants." | |
| 142 `(if (fboundp ,(car args)) | |
| 143 nil | |
| 144 (define-function ,@args))) | |
| 145 | |
| 146 | |
| 1333 | 147 (defun assoc-default (key alist &optional test default) |
| 148 "Find object KEY in a pseudo-alist ALIST. | |
| 149 ALIST is a list of conses or objects. Each element (or the element's car, | |
| 150 if it is a cons) is compared with KEY by evaluating (TEST (car elt) KEY). | |
| 151 If that is non-nil, the element matches; | |
| 152 then `assoc-default' returns the element's cdr, if it is a cons, | |
| 153 or DEFAULT if the element is not a cons. | |
| 154 | |
| 155 If no element matches, the value is nil. | |
| 156 If TEST is omitted or nil, `equal' is used." | |
| 157 (let (found (tail alist) value) | |
| 158 (while (and tail (not found)) | |
| 159 (let ((elt (car tail))) | |
| 160 (when (funcall (or test 'equal) (if (consp elt) (car elt) elt) key) | |
| 161 (setq found t value (if (consp elt) (cdr elt) default)))) | |
| 162 (setq tail (cdr tail))) | |
| 163 value)) | |
| 164 | |
| 165 (defun assoc-ignore-case (key alist) | |
| 166 "Like `assoc', but ignores differences in case and text representation. | |
| 167 KEY must be a string. Upper-case and lower-case letters are treated as equal." | |
| 168 (let (element) | |
| 169 (while (and alist (not element)) | |
| 170 (if (eq t (compare-strings key 0 nil (car (car alist)) 0 nil t)) | |
| 171 (setq element (car alist))) | |
| 172 (setq alist (cdr alist))) | |
| 173 element)) | |
| 174 | |
| 175 (defun assoc-ignore-representation (key alist) | |
| 176 "Like `assoc', but ignores differences in text representation. | |
| 177 KEY must be a string." | |
| 178 (let (element) | |
| 179 (while (and alist (not element)) | |
| 180 (if (eq t (compare-strings key 0 nil (car (car alist)) 0 nil)) | |
| 181 (setq element (car alist))) | |
| 182 (setq alist (cdr alist))) | |
| 183 element)) | |
| 184 | |
| 185 (defun member-ignore-case (elt list) | |
| 186 "Like `member', but ignores differences in case and text representation. | |
| 187 ELT must be a string. Upper-case and lower-case letters are treated as equal." | |
| 188 (while (and list (not (eq t (compare-strings elt 0 nil (car list) 0 nil t)))) | |
| 189 (setq list (cdr list))) | |
| 190 list) | |
| 191 | |
| 192 | |
| 428 | 193 ;;;; Keymap support. |
| 194 ;; XEmacs: removed to keymap.el | |
| 195 | |
| 196 ;;;; The global keymap tree. | |
| 197 | |
| 198 ;;; global-map, esc-map, and ctl-x-map have their values set up in | |
| 199 ;;; keymap.c; we just give them docstrings here. | |
| 200 | |
| 201 ;;;; Event manipulation functions. | |
| 202 | |
| 203 ;; XEmacs: This stuff is done in C Code. | |
| 204 | |
| 1333 | 205 ;;;; Obsolescent names for functions generally appear elsewhere, in |
| 206 ;;;; obsolete.el or in the files they are related do. Many very old | |
| 207 ;;;; obsolete stuff has been removed entirely (e.g. anything with `dot' in | |
| 208 ;;;; place of `point'). | |
| 209 | |
| 210 ; alternate names (not obsolete) | |
| 211 (if (not (fboundp 'mod)) (define-function 'mod '%)) | |
| 212 (define-function 'move-marker 'set-marker) | |
| 213 (define-function 'beep 'ding) ; preserve lingual purity | |
| 214 (define-function 'indent-to-column 'indent-to) | |
| 215 (define-function 'backward-delete-char 'delete-backward-char) | |
| 216 (define-function 'search-forward-regexp (symbol-function 're-search-forward)) | |
| 217 (define-function 'search-backward-regexp (symbol-function 're-search-backward)) | |
| 218 (define-function 'remove-directory 'delete-directory) | |
| 219 (define-function 'set-match-data 'store-match-data) | |
| 220 (define-function 'send-string-to-terminal 'external-debugging-output) | |
| 428 | 221 |
| 222 ;; XEmacs: | |
| 223 (defun local-variable-if-set-p (sym buffer) | |
| 224 "Return t if SYM would be local to BUFFER after it is set. | |
| 225 A nil value for BUFFER is *not* the same as (current-buffer), but | |
| 226 can be used to determine whether `make-variable-buffer-local' has been | |
| 227 called on SYM." | |
| 228 (local-variable-p sym buffer t)) | |
| 229 | |
| 230 | |
| 231 ;;;; Hook manipulation functions. | |
| 232 | |
| 233 ;; (defconst run-hooks 'run-hooks ...) | |
| 234 | |
| 235 (defun make-local-hook (hook) | |
| 236 "Make the hook HOOK local to the current buffer. | |
| 1333 | 237 The return value is HOOK. |
| 238 | |
| 239 You never need to call this function now that `add-hook' does it for you | |
| 240 if its LOCAL argument is non-nil. | |
| 241 | |
| 428 | 242 When a hook is local, its local and global values |
| 243 work in concert: running the hook actually runs all the hook | |
| 244 functions listed in *either* the local value *or* the global value | |
| 245 of the hook variable. | |
| 246 | |
| 247 This function works by making `t' a member of the buffer-local value, | |
| 248 which acts as a flag to run the hook functions in the default value as | |
| 249 well. This works for all normal hooks, but does not work for most | |
| 250 non-normal hooks yet. We will be changing the callers of non-normal | |
| 251 hooks so that they can handle localness; this has to be done one by | |
| 252 one. | |
| 253 | |
| 254 This function does nothing if HOOK is already local in the current | |
| 255 buffer. | |
| 256 | |
| 1333 | 257 Do not use `make-local-variable' to make a hook variable buffer-local." |
| 428 | 258 (if (local-variable-p hook (current-buffer)) ; XEmacs |
| 259 nil | |
| 260 (or (boundp hook) (set hook nil)) | |
| 261 (make-local-variable hook) | |
| 1333 | 262 (set hook (list t))) |
| 263 hook) | |
| 428 | 264 |
| 265 (defun add-hook (hook function &optional append local) | |
| 266 "Add to the value of HOOK the function FUNCTION. | |
| 267 FUNCTION is not added if already present. | |
| 268 FUNCTION is added (if necessary) at the beginning of the hook list | |
| 269 unless the optional argument APPEND is non-nil, in which case | |
| 270 FUNCTION is added at the end. | |
| 271 | |
| 272 The optional fourth argument, LOCAL, if non-nil, says to modify | |
| 273 the hook's buffer-local value rather than its default value. | |
| 1333 | 274 This makes the hook buffer-local if needed. |
| 428 | 275 To make a hook variable buffer-local, always use |
| 276 `make-local-hook', not `make-local-variable'. | |
| 277 | |
| 278 HOOK should be a symbol, and FUNCTION may be any valid function. If | |
| 279 HOOK is void, it is first set to nil. If HOOK's value is a single | |
| 442 | 280 function, it is changed to a list of functions. |
| 281 | |
| 282 You can remove this hook yourself using `remove-hook'. | |
| 283 | |
| 1333 | 284 See also `add-one-shot-hook'." |
| 428 | 285 (or (boundp hook) (set hook nil)) |
| 286 (or (default-boundp hook) (set-default hook nil)) | |
| 1333 | 287 (if local (unless (local-variable-if-set-p hook (current-buffer)) ; XEmacs |
| 288 (make-local-hook hook)) | |
| 289 ;; Detect the case where make-local-variable was used on a hook | |
| 290 ;; and do what we used to do. | |
| 291 (unless (and (consp (symbol-value hook)) (memq t (symbol-value hook))) | |
| 292 (setq local t))) | |
| 293 (let ((hook-value (if local (symbol-value hook) (default-value hook)))) | |
| 294 ;; If the hook value is a single function, turn it into a list. | |
| 295 (when (or (not (listp hook-value)) (eq (car hook-value) 'lambda)) | |
| 296 (setq hook-value (list hook-value))) | |
| 297 ;; Do the actual addition if necessary | |
| 298 (unless (member function hook-value) | |
| 299 (setq hook-value | |
| 300 (if append | |
| 301 (append hook-value (list function)) | |
| 302 (cons function hook-value)))) | |
| 303 ;; Set the actual variable | |
| 304 (if local (set hook hook-value) (set-default hook hook-value)))) | |
| 428 | 305 |
| 306 (defun remove-hook (hook function &optional local) | |
| 307 "Remove from the value of HOOK the function FUNCTION. | |
| 308 HOOK should be a symbol, and FUNCTION may be any valid function. If | |
| 309 FUNCTION isn't the value of HOOK, or, if FUNCTION doesn't appear in the | |
| 310 list of hooks to run in HOOK, then nothing is done. See `add-hook'. | |
| 311 | |
| 312 The optional third argument, LOCAL, if non-nil, says to modify | |
| 313 the hook's buffer-local value rather than its default value. | |
| 1333 | 314 This makes the hook buffer-local if needed. |
| 428 | 315 To make a hook variable buffer-local, always use |
| 316 `make-local-hook', not `make-local-variable'." | |
| 1333 | 317 (or (boundp hook) (set hook nil)) |
| 318 (or (default-boundp hook) (set-default hook nil)) | |
| 319 (if local (unless (local-variable-if-set-p hook (current-buffer)) ; XEmacs | |
| 320 (make-local-hook hook)) | |
| 321 ;; Detect the case where make-local-variable was used on a hook | |
| 322 ;; and do what we used to do. | |
| 323 (unless (and (consp (symbol-value hook)) (memq t (symbol-value hook))) | |
| 324 (setq local t))) | |
| 325 (let ((hook-value (if local (symbol-value hook) (default-value hook)))) | |
| 326 ;; Remove the function, for both the list and the non-list cases. | |
| 327 ;; XEmacs: add hook-test, for handling one-shot hooks. | |
| 328 (flet ((hook-test | |
| 329 (fn hel) | |
| 330 (or (equal fn hel) | |
| 331 (and (symbolp hel) | |
| 332 (equal fn | |
| 333 (get hel 'one-shot-hook-fun)))))) | |
| 334 (if (or (not (listp hook-value)) (eq (car hook-value) 'lambda)) | |
| 335 (if (equal hook-value function) (setq hook-value nil)) | |
| 336 (setq hook-value (delete* function (copy-sequence hook-value) | |
| 337 :test 'hook-test))) | |
| 338 ;; If the function is on the global hook, we need to shadow it locally | |
| 339 ;;(when (and local (member* function (default-value hook) | |
| 340 ;; :test 'hook-test) | |
| 341 ;; (not (member* (cons 'not function) hook-value | |
| 342 ;; :test 'hook-test))) | |
| 343 ;; (push (cons 'not function) hook-value)) | |
| 344 ;; Set the actual variable | |
| 345 (if local (set hook hook-value) (set-default hook hook-value))))) | |
| 442 | 346 |
| 347 ;; XEmacs addition | |
| 348 ;; #### we need a coherent scheme for indicating compatibility info, | |
| 349 ;; so that it can be programmatically retrieved. | |
| 350 (defun add-local-hook (hook function &optional append) | |
| 351 "Add to the local value of HOOK the function FUNCTION. | |
| 1333 | 352 You don't need this any more. It's equivalent to specifying the LOCAL |
| 353 argument to `add-hook'." | |
| 442 | 354 (add-hook hook function append t)) |
| 355 | |
| 356 ;; XEmacs addition | |
| 357 (defun remove-local-hook (hook function) | |
| 358 "Remove from the local value of HOOK the function FUNCTION. | |
| 1333 | 359 You don't need this any more. It's equivalent to specifying the LOCAL |
| 360 argument to `remove-hook'." | |
| 361 (remove-hook hook function t)) | |
| 442 | 362 |
| 363 (defun add-one-shot-hook (hook function &optional append local) | |
| 364 "Add to the value of HOOK the one-shot function FUNCTION. | |
| 365 FUNCTION will automatically be removed from the hook the first time | |
| 366 after it runs (whether to completion or to an error). | |
| 367 FUNCTION is not added if already present. | |
| 368 FUNCTION is added (if necessary) at the beginning of the hook list | |
| 369 unless the optional argument APPEND is non-nil, in which case | |
| 370 FUNCTION is added at the end. | |
| 371 | |
| 372 HOOK should be a symbol, and FUNCTION may be any valid function. If | |
| 373 HOOK is void, it is first set to nil. If HOOK's value is a single | |
| 374 function, it is changed to a list of functions. | |
| 375 | |
| 376 You can remove this hook yourself using `remove-hook'. | |
| 377 | |
| 1333 | 378 See also `add-hook'." |
| 442 | 379 (let ((sym (gensym))) |
| 380 (fset sym `(lambda (&rest args) | |
| 381 (unwind-protect | |
| 382 (apply ',function args) | |
| 383 (remove-hook ',hook ',sym ',local)))) | |
| 384 (put sym 'one-shot-hook-fun function) | |
| 385 (add-hook hook sym append local))) | |
| 386 | |
| 387 (defun add-local-one-shot-hook (hook function &optional append) | |
| 388 "Add to the local value of HOOK the one-shot function FUNCTION. | |
| 1333 | 389 You don't need this any more. It's equivalent to specifying the LOCAL |
| 390 argument to `add-one-shot-hook'." | |
| 442 | 391 (add-one-shot-hook hook function append t)) |
| 428 | 392 |
|
4461
42fad34efb3f
Support COMPARE-FN in add-to-list; thank you Brian Palmer.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4369
diff
changeset
|
393 (defun add-to-list (list-var element &optional append compare-fn) |
| 428 | 394 "Add to the value of LIST-VAR the element ELEMENT if it isn't there yet. |
|
4461
42fad34efb3f
Support COMPARE-FN in add-to-list; thank you Brian Palmer.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4369
diff
changeset
|
395 The test for presence of ELEMENT is done with COMPARE-FN; if |
|
42fad34efb3f
Support COMPARE-FN in add-to-list; thank you Brian Palmer.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4369
diff
changeset
|
396 COMPARE-FN is nil, then it defaults to `equal'. If ELEMENT is added, |
|
42fad34efb3f
Support COMPARE-FN in add-to-list; thank you Brian Palmer.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4369
diff
changeset
|
397 it is added at the beginning of the list, unless the optional argument |
|
42fad34efb3f
Support COMPARE-FN in add-to-list; thank you Brian Palmer.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4369
diff
changeset
|
398 APPEND is non-nil, in which case ELEMENT is added at the end. |
| 878 | 399 |
| 428 | 400 If you want to use `add-to-list' on a variable that is not defined |
| 401 until a certain package is loaded, you should put the call to `add-to-list' | |
| 402 into a hook function that will be run only after loading the package. | |
| 403 `eval-after-load' provides one way to do this. In some cases | |
| 404 other hooks, such as major mode hooks, can do the job." | |
| 4463 | 405 (if (member* element (symbol-value list-var) :test (or compare-fn #'equal)) |
| 878 | 406 (symbol-value list-var) |
| 407 (set list-var | |
| 408 (if append | |
| 409 (append (symbol-value list-var) (list element)) | |
| 410 (cons element (symbol-value list-var)))))) | |
| 428 | 411 |
| 1333 | 412 ;; END SYNCHED WITH FSF 21.2 |
| 413 | |
| 428 | 414 ;; XEmacs additions |
| 415 ;; called by Fkill_buffer() | |
| 416 (defvar kill-buffer-hook nil | |
| 417 "Function or functions to be called when a buffer is killed. | |
| 418 The value of this variable may be buffer-local. | |
| 419 The buffer about to be killed is current when this hook is run.") | |
| 420 | |
| 421 ;; in C in FSFmacs | |
| 422 (defvar kill-emacs-hook nil | |
| 423 "Function or functions to be called when `kill-emacs' is called, | |
| 424 just before emacs is actually killed.") | |
| 425 | |
| 426 ;; not obsolete. | |
| 427 ;; #### These are a bad idea, because the CL RPLACA and RPLACD | |
| 428 ;; return the cons cell, not the new CAR/CDR. -hniksic | |
| 429 ;; The proper definition would be: | |
| 430 ;; (defun rplaca (conscell newcar) | |
| 431 ;; (setcar conscell newcar) | |
| 432 ;; conscell) | |
| 433 ;; ...and analogously for RPLACD. | |
| 434 (define-function 'rplaca 'setcar) | |
| 435 (define-function 'rplacd 'setcdr) | |
| 436 | |
| 437 (defun copy-symbol (symbol &optional copy-properties) | |
| 438 "Return a new uninterned symbol with the same name as SYMBOL. | |
| 439 If COPY-PROPERTIES is non-nil, the new symbol will have a copy of | |
| 440 SYMBOL's value, function, and property lists." | |
| 441 (let ((new (make-symbol (symbol-name symbol)))) | |
| 442 (when copy-properties | |
| 443 ;; This will not copy SYMBOL's chain of forwarding objects, but | |
| 444 ;; I think that's OK. Callers should not expect such magic to | |
| 445 ;; keep working in the copy in the first place. | |
| 446 (and (boundp symbol) | |
| 447 (set new (symbol-value symbol))) | |
| 448 (and (fboundp symbol) | |
| 449 (fset new (symbol-function symbol))) | |
| 450 (setplist new (copy-list (symbol-plist symbol)))) | |
| 451 new)) | |
| 452 | |
| 442 | 453 (defun set-symbol-value-in-buffer (sym val buffer) |
| 454 "Set the value of SYM to VAL in BUFFER. Useful with buffer-local variables. | |
| 455 If SYM has a buffer-local value in BUFFER, or will have one if set, this | |
| 456 function allows you to set the local value. | |
| 457 | |
| 458 NOTE: At some point, this will be moved into C and will be very fast." | |
| 459 (with-current-buffer buffer | |
| 460 (set sym val))) | |
| 444 | 461 |
| 1333 | 462 |
| 463 ;; BEGIN SYNCHED WITH FSF 21.2 | |
| 464 | |
| 465 ;; #### #### #### AAaargh! Must be in C, because it is used insanely | |
| 466 ;; early in the bootstrap process. | |
| 467 ;(defun split-path (path) | |
| 468 ; "Explode a search path into a list of strings. | |
| 469 ;The path components are separated with the characters specified | |
| 470 ;with `path-separator'." | |
| 471 ; (while (or (not stringp path-separator) | |
| 472 ; (/= (length path-separator) 1)) | |
| 473 ; (setq path-separator (signal 'error (list "\ | |
| 474 ;`path-separator' should be set to a single-character string" | |
| 475 ; path-separator)))) | |
| 476 ; (split-string-by-char path (aref separator 0))) | |
| 477 | |
| 478 (defmacro with-current-buffer (buffer &rest body) | |
| 479 "Temporarily make BUFFER the current buffer and execute the forms in BODY. | |
| 480 The value returned is the value of the last form in BODY. | |
| 481 See also `with-temp-buffer'." | |
| 482 `(save-current-buffer | |
| 483 (set-buffer ,buffer) | |
| 484 ,@body)) | |
| 485 | |
| 486 (defmacro with-temp-file (filename &rest forms) | |
| 487 "Create a new buffer, evaluate FORMS there, and write the buffer to FILENAME. | |
| 488 The value of the last form in FORMS is returned, like `progn'. | |
| 489 See also `with-temp-buffer'." | |
| 490 (let ((temp-file (make-symbol "temp-file")) | |
| 491 (temp-buffer (make-symbol "temp-buffer"))) | |
| 492 `(let ((,temp-file ,filename) | |
| 493 (,temp-buffer | |
| 494 (get-buffer-create (generate-new-buffer-name " *temp file*")))) | |
| 495 (unwind-protect | |
| 496 (prog1 | |
| 497 (with-current-buffer ,temp-buffer | |
| 498 ,@forms) | |
| 499 (with-current-buffer ,temp-buffer | |
| 500 (widen) | |
| 501 (write-region (point-min) (point-max) ,temp-file nil 0))) | |
| 502 (and (buffer-name ,temp-buffer) | |
| 503 (kill-buffer ,temp-buffer)))))) | |
| 504 | |
| 505 ;; FSF compatibility | |
| 506 (defmacro with-temp-message (message &rest body) | |
| 507 "Display MESSAGE temporarily while BODY is evaluated. | |
| 508 The original message is restored to the echo area after BODY has finished. | |
| 509 The value returned is the value of the last form in BODY. | |
| 510 If MESSAGE is nil, the echo area and message log buffer are unchanged. | |
| 511 Use a MESSAGE of \"\" to temporarily clear the echo area. | |
| 428 | 512 |
| 1333 | 513 Note that this function exists for FSF compatibility purposes. A better way |
| 514 under XEmacs is to give the message a particular label (see `display-message'); | |
| 515 then, the old message is automatically restored when you clear your message | |
| 516 with `clear-message'." | |
| 517 ;; FSF additional doc string from 21.2: | |
| 518 ;; MESSAGE is written to the message log buffer if `message-log-max' is non-nil. | |
| 519 (let ((current-message (make-symbol "current-message")) | |
| 520 (temp-message (make-symbol "with-temp-message"))) | |
| 521 `(let ((,temp-message ,message) | |
| 522 (,current-message)) | |
| 523 (unwind-protect | |
| 524 (progn | |
| 525 (when ,temp-message | |
| 526 (setq ,current-message (current-message)) | |
| 527 (message "%s" ,temp-message)) | |
| 528 ,@body) | |
| 529 (and ,temp-message ,current-message | |
| 530 (message "%s" ,current-message)))))) | |
| 531 | |
| 532 (defmacro with-temp-buffer (&rest forms) | |
| 533 "Create a temporary buffer, and evaluate FORMS there like `progn'. | |
| 534 See also `with-temp-file' and `with-output-to-string'." | |
| 535 (let ((temp-buffer (make-symbol "temp-buffer"))) | |
| 536 `(let ((,temp-buffer | |
| 537 (get-buffer-create (generate-new-buffer-name " *temp*")))) | |
| 538 (unwind-protect | |
| 539 (with-current-buffer ,temp-buffer | |
| 540 ,@forms) | |
| 541 (and (buffer-name ,temp-buffer) | |
| 542 (kill-buffer ,temp-buffer)))))) | |
| 543 | |
| 544 (defmacro with-output-to-string (&rest body) | |
| 545 "Execute BODY, return the text it sent to `standard-output', as a string." | |
| 546 `(let ((standard-output | |
| 547 (get-buffer-create (generate-new-buffer-name " *string-output*")))) | |
| 548 (let ((standard-output standard-output)) | |
| 549 ,@body) | |
| 550 (with-current-buffer standard-output | |
| 551 (prog1 | |
| 552 (buffer-string) | |
| 553 (kill-buffer nil))))) | |
| 554 | |
| 2135 | 555 (defmacro with-local-quit (&rest body) |
| 556 "Execute BODY with `inhibit-quit' temporarily bound to nil." | |
| 557 `(condition-case nil | |
| 558 (let ((inhibit-quit nil)) | |
| 559 ,@body) | |
| 560 (quit (setq quit-flag t)))) | |
| 561 | |
| 562 ;; FSF 21.3. | |
| 1333 | 563 |
| 564 ; (defmacro combine-after-change-calls (&rest body) | |
| 565 ; "Execute BODY, but don't call the after-change functions till the end. | |
| 566 ; If BODY makes changes in the buffer, they are recorded | |
| 567 ; and the functions on `after-change-functions' are called several times | |
| 568 ; when BODY is finished. | |
| 569 ; The return value is the value of the last form in BODY. | |
| 570 | |
| 571 ; If `before-change-functions' is non-nil, then calls to the after-change | |
| 572 ; functions can't be deferred, so in that case this macro has no effect. | |
| 573 | |
| 574 ; Do not alter `after-change-functions' or `before-change-functions' | |
| 575 ; in BODY." | |
| 2135 | 576 ; (declare (indent 0) (debug t)) |
| 1333 | 577 ; `(unwind-protect |
| 578 ; (let ((combine-after-change-calls t)) | |
| 579 ; . ,body) | |
| 580 ; (combine-after-change-execute))) | |
| 801 | 581 |
|
4369
ef9eb714f0e4
Add ascii-case-table, #'with-case-table; make iso8859-1.el more comprehensible.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4329
diff
changeset
|
582 (defmacro with-case-table (table &rest body) |
|
ef9eb714f0e4
Add ascii-case-table, #'with-case-table; make iso8859-1.el more comprehensible.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4329
diff
changeset
|
583 "Execute the forms in BODY with TABLE as the current case table. |
|
ef9eb714f0e4
Add ascii-case-table, #'with-case-table; make iso8859-1.el more comprehensible.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4329
diff
changeset
|
584 The value returned is the value of the last form in BODY." |
|
ef9eb714f0e4
Add ascii-case-table, #'with-case-table; make iso8859-1.el more comprehensible.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4329
diff
changeset
|
585 (declare (indent 1) (debug t)) |
|
ef9eb714f0e4
Add ascii-case-table, #'with-case-table; make iso8859-1.el more comprehensible.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4329
diff
changeset
|
586 (let ((old-case-table (make-symbol "table")) |
|
ef9eb714f0e4
Add ascii-case-table, #'with-case-table; make iso8859-1.el more comprehensible.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4329
diff
changeset
|
587 (old-buffer (make-symbol "buffer"))) |
|
ef9eb714f0e4
Add ascii-case-table, #'with-case-table; make iso8859-1.el more comprehensible.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4329
diff
changeset
|
588 `(let ((,old-case-table (current-case-table)) |
|
ef9eb714f0e4
Add ascii-case-table, #'with-case-table; make iso8859-1.el more comprehensible.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4329
diff
changeset
|
589 (,old-buffer (current-buffer))) |
|
ef9eb714f0e4
Add ascii-case-table, #'with-case-table; make iso8859-1.el more comprehensible.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4329
diff
changeset
|
590 (unwind-protect |
|
ef9eb714f0e4
Add ascii-case-table, #'with-case-table; make iso8859-1.el more comprehensible.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4329
diff
changeset
|
591 (progn (set-case-table ,table) |
|
ef9eb714f0e4
Add ascii-case-table, #'with-case-table; make iso8859-1.el more comprehensible.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4329
diff
changeset
|
592 ,@body) |
|
ef9eb714f0e4
Add ascii-case-table, #'with-case-table; make iso8859-1.el more comprehensible.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4329
diff
changeset
|
593 (with-current-buffer ,old-buffer |
|
ef9eb714f0e4
Add ascii-case-table, #'with-case-table; make iso8859-1.el more comprehensible.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4329
diff
changeset
|
594 (set-case-table ,old-case-table)))))) |
| 2135 | 595 |
| 596 (defvar delay-mode-hooks nil | |
| 597 "If non-nil, `run-mode-hooks' should delay running the hooks.") | |
| 598 (defvar delayed-mode-hooks nil | |
| 599 "List of delayed mode hooks waiting to be run.") | |
| 600 (make-variable-buffer-local 'delayed-mode-hooks) | |
| 601 (put 'delay-mode-hooks 'permanent-local t) | |
| 602 | |
| 603 (defun run-mode-hooks (&rest hooks) | |
| 604 "Run mode hooks `delayed-mode-hooks' and HOOKS, or delay HOOKS. | |
| 605 Execution is delayed if `delay-mode-hooks' is non-nil. | |
| 606 Major mode functions should use this." | |
| 607 (if delay-mode-hooks | |
| 608 ;; Delaying case. | |
| 609 (dolist (hook hooks) | |
| 610 (push hook delayed-mode-hooks)) | |
| 611 ;; Normal case, just run the hook as before plus any delayed hooks. | |
| 612 (setq hooks (nconc (nreverse delayed-mode-hooks) hooks)) | |
| 613 (setq delayed-mode-hooks nil) | |
| 614 (apply 'run-hooks hooks))) | |
| 615 | |
| 616 (defmacro delay-mode-hooks (&rest body) | |
| 617 "Execute BODY, but delay any `run-mode-hooks'. | |
| 618 Only affects hooks run in the current buffer." | |
| 619 `(progn | |
| 620 (make-local-variable 'delay-mode-hooks) | |
| 621 (let ((delay-mode-hooks t)) | |
| 622 ,@body))) | |
| 623 | |
| 1333 | 624 (defmacro with-syntax-table (table &rest body) |
| 625 "Evaluate BODY with syntax table of current buffer set to a copy of TABLE. | |
| 626 The syntax table of the current buffer is saved, BODY is evaluated, and the | |
| 627 saved table is restored, even in case of an abnormal exit. | |
| 628 Value is what BODY returns." | |
| 629 (let ((old-table (make-symbol "table")) | |
| 630 (old-buffer (make-symbol "buffer"))) | |
| 631 `(let ((,old-table (syntax-table)) | |
| 632 (,old-buffer (current-buffer))) | |
| 633 (unwind-protect | |
| 634 (progn | |
| 635 (set-syntax-table (copy-syntax-table ,table)) | |
| 636 ,@body) | |
| 637 (save-current-buffer | |
| 638 (set-buffer ,old-buffer) | |
| 639 (set-syntax-table ,old-table)))))) | |
| 640 | |
| 641 (put 'with-syntax-table 'lisp-indent-function 1) | |
| 642 (put 'with-syntax-table 'edebug-form-spec '(form body)) | |
| 643 | |
| 644 | |
| 645 ;; Moved from mule-coding.el. | |
| 646 (defmacro with-string-as-buffer-contents (str &rest body) | |
| 647 "With the contents of the current buffer being STR, run BODY. | |
|
4516
e96f3aca4d63
Document initial position of point in `with-string-as-buffer-contents'.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4504
diff
changeset
|
648 Point starts positioned to end of buffer. |
| 1333 | 649 Returns the new contents of the buffer, as modified by BODY. |
| 650 The original current buffer is restored afterwards." | |
| 651 `(with-temp-buffer | |
| 652 (insert ,str) | |
| 653 ,@body | |
| 654 (buffer-string))) | |
| 655 | |
| 656 | |
| 657 (defmacro save-match-data (&rest body) | |
| 658 "Execute BODY forms, restoring the global value of the match data." | |
| 659 (let ((original (make-symbol "match-data"))) | |
| 660 (list 'let (list (list original '(match-data))) | |
| 661 (list 'unwind-protect | |
| 662 (cons 'progn body) | |
| 663 (list 'store-match-data original))))) | |
| 664 | |
| 665 | |
| 666 (defun match-string (num &optional string) | |
| 667 "Return string of text matched by last search. | |
| 668 NUM specifies which parenthesized expression in the last regexp. | |
| 669 Value is nil if NUMth pair didn't match, or there were less than NUM pairs. | |
| 670 Zero means the entire text matched by the whole regexp or whole string. | |
| 671 STRING should be given if the last search was by `string-match' on STRING." | |
| 672 (if (match-beginning num) | |
| 673 (if string | |
| 674 (substring string (match-beginning num) (match-end num)) | |
| 675 (buffer-substring (match-beginning num) (match-end num))))) | |
| 801 | 676 |
| 1333 | 677 (defun match-string-no-properties (num &optional string) |
| 678 "Return string of text matched by last search, without text properties. | |
| 679 NUM specifies which parenthesized expression in the last regexp. | |
| 680 Value is nil if NUMth pair didn't match, or there were less than NUM pairs. | |
| 681 Zero means the entire text matched by the whole regexp or whole string. | |
| 682 STRING should be given if the last search was by `string-match' on STRING." | |
| 683 (if (match-beginning num) | |
| 684 (if string | |
| 685 (let ((result | |
| 686 (substring string (match-beginning num) (match-end num)))) | |
| 687 (set-text-properties 0 (length result) nil result) | |
| 688 result) | |
| 689 (buffer-substring-no-properties (match-beginning num) | |
| 690 (match-end num))))) | |
| 691 | |
| 1425 | 692 (defconst split-string-default-separators "[ \f\t\n\r\v]+" |
| 693 "The default value of separators for `split-string'. | |
| 694 | |
| 695 A regexp matching strings of whitespace. May be locale-dependent | |
| 696 \(as yet unimplemented). Should not match non-breaking spaces. | |
| 697 | |
| 698 Warning: binding this to a different value and using it as default is | |
| 699 likely to have undesired semantics.") | |
| 700 | |
| 701 ;; specification for `split-string' agreed with rms 2003-04-23 | |
| 702 ;; xemacs design <87vfx5vor0.fsf@tleepslib.sk.tsukuba.ac.jp> | |
| 703 | |
| 1495 | 704 ;; The specification says that if both SEPARATORS and OMIT-NULLS are |
| 705 ;; defaulted, OMIT-NULLS should be treated as t. Simplifying the logical | |
| 706 ;; expression leads to the equivalent implementation that if SEPARATORS | |
| 707 ;; is defaulted, OMIT-NULLS is treated as t. | |
| 708 | |
| 1425 | 709 (defun split-string (string &optional separators omit-nulls) |
| 710 "Splits STRING into substrings bounded by matches for SEPARATORS. | |
| 711 | |
| 712 The beginning and end of STRING, and each match for SEPARATORS, are | |
| 713 splitting points. The substrings matching SEPARATORS are removed, and | |
| 714 the substrings between the splitting points are collected as a list, | |
| 1333 | 715 which is returned. |
| 1425 | 716 |
| 2138 | 717 If SEPARATORS is non-`nil', it should be a regular expression matching text |
| 718 which separates, but is not part of, the substrings. If `nil' it defaults to | |
| 1495 | 719 `split-string-default-separators', normally \"[ \\f\\t\\n\\r\\v]+\", and |
| 2138 | 720 OMIT-NULLS is forced to `t'. |
| 1333 | 721 |
| 2138 | 722 If OMIT-NULLS is `t', zero-length substrings are omitted from the list \(so |
| 1425 | 723 that for the default value of SEPARATORS leading and trailing whitespace |
| 2138 | 724 are effectively trimmed). If `nil', all zero-length substrings are retained, |
| 1425 | 725 which correctly parses CSV format, for example. |
| 726 | |
| 1495 | 727 Note that the effect of `(split-string STRING)' is the same as |
| 728 `(split-string STRING split-string-default-separators t)'). In the rare | |
| 729 case that you wish to retain zero-length substrings when splitting on | |
| 730 whitespace, use `(split-string STRING split-string-default-separators nil)'. | |
| 1333 | 731 |
| 2138 | 732 Modifies the match data when successful; use `save-match-data' if necessary." |
| 1425 | 733 |
| 1495 | 734 (let ((keep-nulls (not (if separators omit-nulls t))) |
| 1425 | 735 (rexp (or separators split-string-default-separators)) |
| 1333 | 736 (start 0) |
| 737 notfirst | |
| 738 (list nil)) | |
| 739 (while (and (string-match rexp string | |
| 740 (if (and notfirst | |
| 741 (= start (match-beginning 0)) | |
| 742 (< start (length string))) | |
| 743 (1+ start) start)) | |
| 1425 | 744 (< start (length string))) |
| 1333 | 745 (setq notfirst t) |
| 1425 | 746 (if (or keep-nulls (< start (match-beginning 0))) |
| 1333 | 747 (setq list |
| 748 (cons (substring string start (match-beginning 0)) | |
| 749 list))) | |
| 750 (setq start (match-end 0))) | |
| 1425 | 751 (if (or keep-nulls (< start (length string))) |
| 1333 | 752 (setq list |
| 753 (cons (substring string start) | |
| 754 list))) | |
| 755 (nreverse list))) | |
| 756 | |
| 757 (defun subst-char-in-string (fromchar tochar string &optional inplace) | |
| 758 "Replace FROMCHAR with TOCHAR in STRING each time it occurs. | |
| 759 Unless optional argument INPLACE is non-nil, return a new string." | |
| 760 (let ((i (length string)) | |
| 761 (newstr (if inplace string (copy-sequence string)))) | |
| 762 (while (> i 0) | |
| 763 (setq i (1- i)) | |
| 764 (if (eq (aref newstr i) fromchar) | |
| 765 (aset newstr i tochar))) | |
| 766 newstr)) | |
| 767 | |
| 768 | |
| 769 ;; XEmacs addition: | |
| 428 | 770 (defun replace-in-string (str regexp newtext &optional literal) |
| 771 "Replace all matches in STR for REGEXP with NEWTEXT string, | |
| 772 and returns the new string. | |
| 773 Optional LITERAL non-nil means do a literal replacement. | |
| 442 | 774 Otherwise treat `\\' in NEWTEXT as special: |
| 775 `\\&' in NEWTEXT means substitute original matched text. | |
| 776 `\\N' means substitute what matched the Nth `\\(...\\)'. | |
| 777 If Nth parens didn't match, substitute nothing. | |
| 778 `\\\\' means insert one `\\'. | |
| 779 `\\u' means upcase the next character. | |
| 780 `\\l' means downcase the next character. | |
| 781 `\\U' means begin upcasing all following characters. | |
| 782 `\\L' means begin downcasing all following characters. | |
| 783 `\\E' means terminate the effect of any `\\U' or `\\L'." | |
| 428 | 784 (check-argument-type 'stringp str) |
| 785 (check-argument-type 'stringp newtext) | |
| 442 | 786 (if (> (length str) 50) |
| 924 | 787 (let ((cfs case-fold-search)) |
| 788 (with-temp-buffer | |
| 789 (setq case-fold-search cfs) | |
| 790 (insert str) | |
| 791 (goto-char 1) | |
| 442 | 792 (while (re-search-forward regexp nil t) |
| 793 (replace-match newtext t literal)) | |
| 924 | 794 (buffer-string))) |
| 795 (let ((start 0) newstr) | |
| 796 (while (string-match regexp str start) | |
| 797 (setq newstr (replace-match newtext t literal str) | |
| 798 start (+ (match-end 0) (- (length newstr) (length str))) | |
| 799 str newstr)) | |
| 800 str))) | |
| 428 | 801 |
| 1333 | 802 (defun replace-regexp-in-string (regexp rep string &optional |
| 803 fixedcase literal subexp start) | |
| 804 "Replace all matches for REGEXP with REP in STRING. | |
| 805 | |
| 806 Return a new string containing the replacements. | |
| 807 | |
| 4199 | 808 Optional arguments FIXEDCASE and LITERAL are like the arguments with |
| 809 the same names of function `replace-match'. If START is non-nil, | |
| 810 start replacements at that index in STRING. | |
| 811 | |
| 812 For compatibility with old XEmacs code and with recent GNU Emacs, the | |
| 813 interpretation of SUBEXP is somewhat complicated. If SUBEXP is a | |
| 814 buffer, it is interpreted as the buffer which provides syntax tables | |
| 815 and case tables for the match and replacement. If it is not a buffer, | |
| 816 the current buffer is used. If SUBEXP is an integer, it is the index | |
| 817 of the subexpression of REGEXP which is to be replaced. | |
| 428 | 818 |
| 1333 | 819 REP is either a string used as the NEWTEXT arg of `replace-match' or a |
| 820 function. If it is a function it is applied to each match to generate | |
| 821 the replacement passed to `replace-match'; the match-data at this | |
| 4199 | 822 point are such that `(match-string SUBEXP STRING)' is the function's |
| 823 argument if SUBEXP is an integer \(otherwise the whole match is passed | |
| 824 and replaced). | |
| 428 | 825 |
| 1333 | 826 To replace only the first match (if any), make REGEXP match up to \\' |
| 827 and replace a sub-expression, e.g. | |
| 828 (replace-regexp-in-string \"\\(foo\\).*\\'\" \"bar\" \" foo foo\" nil nil 1) | |
| 829 => \" bar foo\" | |
| 4199 | 830 |
| 831 Signals `invalid-argument' if SUBEXP is not an integer, buffer, or nil; | |
| 832 or is an integer, but the indicated subexpression was not matched. | |
| 833 Signals `invalid-argument' if STRING is nil but the last text matched was a string, | |
| 834 or if STRING is a string but the last text matched was a buffer." | |
| 428 | 835 |
| 1333 | 836 ;; To avoid excessive consing from multiple matches in long strings, |
| 837 ;; don't just call `replace-match' continually. Walk down the | |
| 838 ;; string looking for matches of REGEXP and building up a (reversed) | |
| 839 ;; list MATCHES. This comprises segments of STRING which weren't | |
| 840 ;; matched interspersed with replacements for segments that were. | |
| 841 ;; [For a `large' number of replacments it's more efficient to | |
| 842 ;; operate in a temporary buffer; we can't tell from the function's | |
| 843 ;; args whether to choose the buffer-based implementation, though it | |
| 844 ;; might be reasonable to do so for long enough STRING.] | |
| 845 (let ((l (length string)) | |
| 846 (start (or start 0)) | |
| 4199 | 847 (expndx (if (integerp subexp) subexp 0)) |
| 1333 | 848 matches str mb me) |
| 849 (save-match-data | |
| 850 (while (and (< start l) (string-match regexp string start)) | |
| 851 (setq mb (match-beginning 0) | |
| 852 me (match-end 0)) | |
| 853 ;; If we matched the empty string, make sure we advance by one char | |
| 854 (when (= me mb) (setq me (min l (1+ mb)))) | |
| 855 ;; Generate a replacement for the matched substring. | |
| 856 ;; Operate only on the substring to minimize string consing. | |
| 857 ;; Set up match data for the substring for replacement; | |
| 858 ;; presumably this is likely to be faster than munging the | |
| 859 ;; match data directly in Lisp. | |
| 860 (string-match regexp (setq str (substring string mb me))) | |
| 861 (setq matches | |
| 862 (cons (replace-match (if (stringp rep) | |
| 863 rep | |
| 4199 | 864 (funcall rep (match-string expndx str))) |
| 865 ;; no, this subexp shouldn't be expndx | |
| 1333 | 866 fixedcase literal str subexp) |
| 867 (cons (substring string start mb) ; unmatched prefix | |
| 868 matches))) | |
| 869 (setq start me)) | |
| 870 ;; Reconstruct a string from the pieces. | |
| 871 (setq matches (cons (substring string start l) matches)) ; leftover | |
| 872 (apply #'concat (nreverse matches))))) | |
| 428 | 873 |
| 1333 | 874 ;; END SYNCHED WITH FSF 21.2 |
| 875 | |
| 876 | |
| 1899 | 877 ;; BEGIN SYNCHED WITH FSF 21.3 |
| 878 | |
| 879 (defun add-to-invisibility-spec (arg) | |
| 880 "Add elements to `buffer-invisibility-spec'. | |
| 881 See documentation for `buffer-invisibility-spec' for the kind of elements | |
| 882 that can be added." | |
| 883 (if (eq buffer-invisibility-spec t) | |
| 884 (setq buffer-invisibility-spec (list t))) | |
| 885 (setq buffer-invisibility-spec | |
| 886 (cons arg buffer-invisibility-spec))) | |
| 887 | |
| 888 (defun remove-from-invisibility-spec (arg) | |
| 889 "Remove elements from `buffer-invisibility-spec'." | |
| 890 (if (consp buffer-invisibility-spec) | |
| 891 (setq buffer-invisibility-spec (delete arg buffer-invisibility-spec)))) | |
| 892 | |
| 893 ;; END SYNCHED WITH FSF 21.3 | |
| 894 | |
| 895 | |
| 1333 | 896 ;;; Basic string functions |
| 883 | 897 |
| 1333 | 898 ;; XEmacs |
| 899 (defun string-equal-ignore-case (str1 str2) | |
| 900 "Return t if two strings have identical contents, ignoring case differences. | |
| 901 Case is not significant. Text properties and extents are ignored. | |
| 902 Symbols are also allowed; their print names are used instead. | |
| 428 | 903 |
| 1333 | 904 See also `equalp'." |
| 905 (if (symbolp str1) | |
| 906 (setq str1 (symbol-name str1))) | |
| 907 (if (symbolp str2) | |
| 908 (setq str2 (symbol-name str2))) | |
| 909 (eq t (compare-strings str1 nil nil str2 nil nil t))) | |
| 428 | 910 |
| 911 (defun insert-face (string face) | |
| 912 "Insert STRING and highlight with FACE. Return the extent created." | |
| 913 (let ((p (point)) ext) | |
| 914 (insert string) | |
| 915 (setq ext (make-extent p (point))) | |
| 916 (set-extent-face ext face) | |
| 917 ext)) | |
| 918 | |
| 919 ;; not obsolete. | |
| 920 (define-function 'string= 'string-equal) | |
| 921 (define-function 'string< 'string-lessp) | |
| 922 (define-function 'int-to-string 'number-to-string) | |
| 923 (define-function 'string-to-int 'string-to-number) | |
| 924 | |
| 925 ;; These two names are a bit awkward, as they conflict with the normal | |
| 926 ;; foo-to-bar naming scheme, but CLtL2 has them, so they stay. | |
| 927 (define-function 'char-int 'char-to-int) | |
| 928 (define-function 'int-char 'int-to-char) | |
| 929 | |
|
4329
d9eb5ea14f65
Provide %b in #'format; use it for converting between ints and bit vectors.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4267
diff
changeset
|
930 ;; XEmacs addition. |
|
d9eb5ea14f65
Provide %b in #'format; use it for converting between ints and bit vectors.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4267
diff
changeset
|
931 (defun integer-to-bit-vector (integer &optional minlength) |
|
d9eb5ea14f65
Provide %b in #'format; use it for converting between ints and bit vectors.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4267
diff
changeset
|
932 "Return INTEGER converted to a bit vector. |
|
d9eb5ea14f65
Provide %b in #'format; use it for converting between ints and bit vectors.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4267
diff
changeset
|
933 Optional argument MINLENGTH gives a minimum length for the returned vector. |
|
d9eb5ea14f65
Provide %b in #'format; use it for converting between ints and bit vectors.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4267
diff
changeset
|
934 If MINLENGTH is not given, zero high-order bits will be ignored." |
|
d9eb5ea14f65
Provide %b in #'format; use it for converting between ints and bit vectors.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4267
diff
changeset
|
935 (check-argument-type #'integerp integer) |
|
d9eb5ea14f65
Provide %b in #'format; use it for converting between ints and bit vectors.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4267
diff
changeset
|
936 (setq minlength (or minlength 0)) |
|
d9eb5ea14f65
Provide %b in #'format; use it for converting between ints and bit vectors.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4267
diff
changeset
|
937 (check-nonnegative-number minlength) |
|
d9eb5ea14f65
Provide %b in #'format; use it for converting between ints and bit vectors.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4267
diff
changeset
|
938 (read (format (format "#*%%0%db" minlength) integer))) |
|
d9eb5ea14f65
Provide %b in #'format; use it for converting between ints and bit vectors.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4267
diff
changeset
|
939 |
|
d9eb5ea14f65
Provide %b in #'format; use it for converting between ints and bit vectors.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4267
diff
changeset
|
940 ;; XEmacs addition. |
|
d9eb5ea14f65
Provide %b in #'format; use it for converting between ints and bit vectors.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4267
diff
changeset
|
941 (defun bit-vector-to-integer (bit-vector) |
|
d9eb5ea14f65
Provide %b in #'format; use it for converting between ints and bit vectors.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4267
diff
changeset
|
942 "Return BIT-VECTOR converted to an integer. |
|
d9eb5ea14f65
Provide %b in #'format; use it for converting between ints and bit vectors.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4267
diff
changeset
|
943 If bignum support is available, BIT-VECTOR's length is unlimited. |
|
d9eb5ea14f65
Provide %b in #'format; use it for converting between ints and bit vectors.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4267
diff
changeset
|
944 Otherwise the limit is the number of value bits in an Lisp integer. " |
|
d9eb5ea14f65
Provide %b in #'format; use it for converting between ints and bit vectors.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4267
diff
changeset
|
945 (check-argument-type #'bit-vector-p bit-vector) |
|
d9eb5ea14f65
Provide %b in #'format; use it for converting between ints and bit vectors.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4267
diff
changeset
|
946 (setq bit-vector (prin1-to-string bit-vector)) |
|
d9eb5ea14f65
Provide %b in #'format; use it for converting between ints and bit vectors.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4267
diff
changeset
|
947 (aset bit-vector 1 ?b) |
|
d9eb5ea14f65
Provide %b in #'format; use it for converting between ints and bit vectors.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4267
diff
changeset
|
948 (read bit-vector)) |
|
d9eb5ea14f65
Provide %b in #'format; use it for converting between ints and bit vectors.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4267
diff
changeset
|
949 |
| 771 | 950 (defun string-width (string) |
| 951 "Return number of columns STRING occupies when displayed. | |
| 952 With international (Mule) support, uses the charset-columns attribute of | |
| 953 the characters in STRING, which may not accurately represent the actual | |
| 954 display width when using a window system. With no international support, | |
| 955 simply returns the length of the string." | |
| 956 (if (featurep 'mule) | |
| 957 (let ((col 0) | |
| 958 (len (length string)) | |
| 959 (i 0)) | |
| 772 | 960 (with-fboundp '(charset-width char-charset) |
| 961 (while (< i len) | |
| 962 (setq col (+ col (charset-width (char-charset (aref string i))))) | |
| 963 (setq i (1+ i)))) | |
| 771 | 964 col) |
| 965 (length string))) | |
| 966 | |
| 777 | 967 (defun char-width (character) |
| 968 "Return number of columns a CHARACTER occupies when displayed." | |
| 969 (if (featurep 'mule) | |
| 970 (with-fboundp '(charset-width char-charset) | |
| 971 (charset-width (char-charset character))) | |
| 972 1)) | |
| 973 | |
| 974 ;; The following several functions are useful in GNU Emacs 20 because | |
| 975 ;; of the multibyte "characters" the internal representation of which | |
| 976 ;; leaks into Lisp. In XEmacs/Mule they are trivial and unnecessary. | |
| 977 ;; We provide them for compatibility reasons solely. | |
| 978 | |
| 979 (defun string-to-sequence (string type) | |
| 980 "Convert STRING to a sequence of TYPE which contains characters in STRING. | |
| 981 TYPE should be `list' or `vector'." | |
| 982 (ecase type | |
| 983 (list | |
| 4267 | 984 (append string nil)) |
| 777 | 985 (vector |
| 4267 | 986 (vconcat string)))) |
| 777 | 987 |
| 988 (defun string-to-list (string) | |
| 989 "Return a list of characters in STRING." | |
| 4267 | 990 (append string nil)) |
| 777 | 991 |
| 992 (defun string-to-vector (string) | |
| 993 "Return a vector of characters in STRING." | |
| 4267 | 994 (vconcat string)) |
| 777 | 995 |
| 996 (defun store-substring (string idx obj) | |
| 997 "Embed OBJ (string or character) at index IDX of STRING." | |
| 998 (let* ((str (cond ((stringp obj) obj) | |
| 999 ((characterp obj) (char-to-string obj)) | |
| 1000 (t (error | |
| 1001 "Invalid argument (should be string or character): %s" | |
| 1002 obj)))) | |
| 1003 (string-len (length string)) | |
| 1004 (len (length str)) | |
| 1005 (i 0)) | |
| 1006 (while (and (< i len) (< idx string-len)) | |
| 1007 (aset string idx (aref str i)) | |
| 1008 (setq idx (1+ idx) i (1+ i))) | |
| 1009 string)) | |
| 1010 | |
| 851 | 1011 ;; From FSF 21.1; ELLIPSES is XEmacs addition. |
| 1012 | |
| 1013 (defun truncate-string-to-width (str end-column &optional start-column padding | |
| 1333 | 1014 ellipses) |
| 777 | 1015 "Truncate string STR to end at column END-COLUMN. |
| 814 | 1016 The optional 3rd arg START-COLUMN, if non-nil, specifies |
| 777 | 1017 the starting column; that means to return the characters occupying |
| 1018 columns START-COLUMN ... END-COLUMN of STR. | |
| 1019 | |
| 814 | 1020 The optional 4th arg PADDING, if non-nil, specifies a padding character |
| 777 | 1021 to add at the end of the result if STR doesn't reach column END-COLUMN, |
| 1022 or if END-COLUMN comes in the middle of a character in STR. | |
| 1023 PADDING is also added at the beginning of the result | |
| 1024 if column START-COLUMN appears in the middle of a character in STR. | |
| 1025 | |
| 1026 If PADDING is nil, no padding is added in these cases, so | |
| 851 | 1027 the resulting string may be narrower than END-COLUMN. |
| 1028 | |
| 1029 BUG: Currently assumes that the padding character is of width one. You | |
| 1030 will get weird results if not. | |
| 1031 | |
| 1032 If ELLIPSES is non-nil, add ellipses (specified by ELLIPSES if a string, | |
| 1033 else `...') if STR extends past END-COLUMN. The ellipses will be added in | |
| 1034 such a way that the total string occupies no more than END-COLUMN columns | |
| 1035 -- i.e. if the string goes past END-COLUMN, it will be truncated somewhere | |
| 1036 short of END-COLUMN so that, with the ellipses added (and padding, if the | |
| 1037 proper place to truncate the string would be in the middle of a character), | |
| 1038 the string occupies exactly END-COLUMN columns." | |
| 777 | 1039 (or start-column |
| 1040 (setq start-column 0)) | |
| 814 | 1041 (let ((len (length str)) |
| 1042 (idx 0) | |
| 1043 (column 0) | |
| 1044 (head-padding "") (tail-padding "") | |
| 1045 ch last-column last-idx from-idx) | |
| 851 | 1046 |
| 1047 ;; find the index of START-COLUMN; bail out if end of string reached. | |
| 814 | 1048 (condition-case nil |
| 1049 (while (< column start-column) | |
| 1050 (setq ch (aref str idx) | |
| 1051 column (+ column (char-width ch)) | |
| 1052 idx (1+ idx))) | |
| 1053 (args-out-of-range (setq idx len))) | |
| 1054 (if (< column start-column) | |
| 851 | 1055 ;; if string ends before START-COLUMN, return either a blank string |
| 1056 ;; or a string entirely padded. | |
| 1057 (if padding (make-string (- end-column start-column) padding) "") | |
| 814 | 1058 (if (and padding (> column start-column)) |
| 1059 (setq head-padding (make-string (- column start-column) padding))) | |
| 1060 (setq from-idx idx) | |
| 851 | 1061 ;; If END-COLUMN is before START-COLUMN, then bail out. |
| 814 | 1062 (if (< end-column column) |
| 851 | 1063 (setq idx from-idx ellipses "") |
| 1064 | |
| 1065 ;; handle ELLIPSES | |
| 1066 (cond ((null ellipses) (setq ellipses "")) | |
| 1067 ((if (<= (string-width str) end-column) | |
| 1068 ;; string fits, no ellipses | |
| 1069 (setq ellipses ""))) | |
| 1070 (t | |
| 1071 ;; else, insert default value and ... | |
| 1072 (or (stringp ellipses) (setq ellipses "...")) | |
| 1073 ;; ... take away the width of the ellipses from the | |
| 1074 ;; destination. do all computations with new, shorter | |
| 1075 ;; width. the padding computed will get us exactly up to | |
| 1076 ;; the shorted width, which is right -- it just gets added | |
| 1077 ;; to the right of the ellipses. | |
| 924 | 1078 (setq end-column (- end-column (string-width ellipses))))) |
| 851 | 1079 |
| 1080 ;; find the index of END-COLUMN; bail out if end of string reached. | |
| 814 | 1081 (condition-case nil |
| 1082 (while (< column end-column) | |
| 1083 (setq last-column column | |
| 1084 last-idx idx | |
| 1085 ch (aref str idx) | |
| 1086 column (+ column (char-width ch)) | |
| 1087 idx (1+ idx))) | |
| 1088 (args-out-of-range (setq idx len))) | |
| 851 | 1089 ;; if we went too far (stopped in middle of character), back up. |
| 814 | 1090 (if (> column end-column) |
| 1091 (setq column last-column idx last-idx)) | |
| 851 | 1092 ;; compute remaining padding |
| 814 | 1093 (if (and padding (< column end-column)) |
| 1094 (setq tail-padding (make-string (- end-column column) padding)))) | |
| 851 | 1095 ;; get substring ... |
| 814 | 1096 (setq str (substring str from-idx idx)) |
| 851 | 1097 ;; and construct result |
| 814 | 1098 (if padding |
| 851 | 1099 (concat head-padding str tail-padding ellipses) |
| 1100 (concat str ellipses))))) | |
| 801 | 1101 |
| 428 | 1102 |
| 1103 ;; alist/plist functions | |
| 1104 (defun plist-to-alist (plist) | |
| 1105 "Convert property list PLIST into the equivalent association-list form. | |
| 1106 The alist is returned. This converts from | |
| 1107 | |
| 1108 \(a 1 b 2 c 3) | |
| 1109 | |
| 1110 into | |
| 1111 | |
| 1112 \((a . 1) (b . 2) (c . 3)) | |
| 1113 | |
| 1114 The original plist is not modified. See also `destructive-plist-to-alist'." | |
| 1115 (let (alist) | |
| 1116 (while plist | |
| 1117 (setq alist (cons (cons (car plist) (cadr plist)) alist)) | |
| 1118 (setq plist (cddr plist))) | |
| 1119 (nreverse alist))) | |
| 1120 | |
| 783 | 1121 (defun map-plist (_mp_fun _mp_plist) |
| 1122 "Map _MP_FUN (a function of two args) over each key/value pair in _MP_PLIST. | |
| 1123 Return a list of the results." | |
| 1124 (let (_mp_result) | |
| 1125 (while _mp_plist | |
| 1126 (push (funcall _mp_fun (car _mp_plist) (cadr _mp_plist)) _mp_result) | |
| 1127 (setq _mp_plist (cddr _mp_plist))) | |
| 1128 (nreverse _mp_result))) | |
| 1129 | |
| 428 | 1130 (defun destructive-plist-to-alist (plist) |
| 1131 "Convert property list PLIST into the equivalent association-list form. | |
| 1132 The alist is returned. This converts from | |
| 1133 | |
| 1134 \(a 1 b 2 c 3) | |
| 1135 | |
| 1136 into | |
| 1137 | |
| 1138 \((a . 1) (b . 2) (c . 3)) | |
| 1139 | |
| 1140 The original plist is destroyed in the process of constructing the alist. | |
| 1141 See also `plist-to-alist'." | |
| 1142 (let ((head plist) | |
| 1143 next) | |
| 1144 (while plist | |
| 1145 ;; remember the next plist pair. | |
| 1146 (setq next (cddr plist)) | |
| 1147 ;; make the cons holding the property value into the alist element. | |
| 1148 (setcdr (cdr plist) (cadr plist)) | |
| 1149 (setcar (cdr plist) (car plist)) | |
| 1150 ;; reattach into alist form. | |
| 1151 (setcar plist (cdr plist)) | |
| 1152 (setcdr plist next) | |
| 1153 (setq plist next)) | |
| 1154 head)) | |
| 1155 | |
| 1156 (defun alist-to-plist (alist) | |
| 1157 "Convert association list ALIST into the equivalent property-list form. | |
| 1158 The plist is returned. This converts from | |
| 1159 | |
| 1160 \((a . 1) (b . 2) (c . 3)) | |
| 1161 | |
| 1162 into | |
| 1163 | |
| 1164 \(a 1 b 2 c 3) | |
| 1165 | |
| 1166 The original alist is not modified. See also `destructive-alist-to-plist'." | |
| 1167 (let (plist) | |
| 1168 (while alist | |
| 1169 (let ((el (car alist))) | |
| 1170 (setq plist (cons (cdr el) (cons (car el) plist)))) | |
| 1171 (setq alist (cdr alist))) | |
| 1172 (nreverse plist))) | |
| 1173 | |
| 1174 ;; getf, remf in cl*.el. | |
| 1175 | |
| 444 | 1176 (defmacro putf (plist property value) |
| 1177 "Add property PROPERTY to plist PLIST with value VALUE. | |
| 1178 Analogous to (setq PLIST (plist-put PLIST PROPERTY VALUE))." | |
| 1179 `(setq ,plist (plist-put ,plist ,property ,value))) | |
| 428 | 1180 |
| 444 | 1181 (defmacro laxputf (lax-plist property value) |
| 1182 "Add property PROPERTY to lax plist LAX-PLIST with value VALUE. | |
| 1183 Analogous to (setq LAX-PLIST (lax-plist-put LAX-PLIST PROPERTY VALUE))." | |
| 1184 `(setq ,lax-plist (lax-plist-put ,lax-plist ,property ,value))) | |
| 428 | 1185 |
| 444 | 1186 (defmacro laxremf (lax-plist property) |
| 1187 "Remove property PROPERTY from lax plist LAX-PLIST. | |
| 1188 Analogous to (setq LAX-PLIST (lax-plist-remprop LAX-PLIST PROPERTY))." | |
| 1189 `(setq ,lax-plist (lax-plist-remprop ,lax-plist ,property))) | |
| 428 | 1190 |
| 1191 ;;; Error functions | |
| 1192 | |
| 442 | 1193 (defun error (datum &rest args) |
| 1194 "Signal a non-continuable error. | |
| 1195 DATUM should normally be an error symbol, i.e. a symbol defined using | |
| 1196 `define-error'. ARGS will be made into a list, and DATUM and ARGS passed | |
| 1197 as the two arguments to `signal', the most basic error handling function. | |
| 1198 | |
| 428 | 1199 This error is not continuable: you cannot continue execution after the |
| 442 | 1200 error using the debugger `r' command. See also `cerror'. |
| 1201 | |
| 1202 The correct semantics of ARGS varies from error to error, but for most | |
| 1203 errors that need to be generated in Lisp code, the first argument | |
| 1204 should be a string describing the *context* of the error (i.e. the | |
| 1205 exact operation being performed and what went wrong), and the remaining | |
| 1206 arguments or \"frobs\" (most often, there is one) specify the | |
| 1207 offending object(s) and/or provide additional details such as the exact | |
| 1208 error when a file error occurred, e.g.: | |
| 1209 | |
| 1210 -- the buffer in which an editing error occurred. | |
| 1211 -- an invalid value that was encountered. (In such cases, the string | |
| 1212 should describe the purpose or \"semantics\" of the value [e.g. if the | |
| 1213 value is an argument to a function, the name of the argument; if the value | |
| 1214 is the value corresponding to a keyword, the name of the keyword; if the | |
| 1215 value is supposed to be a list length, say this and say what the purpose | |
| 1216 of the list is; etc.] as well as specifying why the value is invalid, if | |
| 1217 that's not self-evident.) | |
| 1218 -- the file in which an error occurred. (In such cases, there should be a | |
| 1219 second frob, probably a string, specifying the exact error that occurred. | |
| 1220 This does not occur in the string that precedes the first frob, because | |
| 1221 that frob describes the exact operation that was happening. | |
| 1222 | |
| 1223 For historical compatibility, DATUM can also be a string. In this case, | |
| 1224 DATUM and ARGS are passed together as the arguments to `format', and then | |
| 1225 an error is signalled using the error symbol `error' and formatted string. | |
| 1226 Although this usage of `error' is very common, it is deprecated because it | |
| 1227 totally defeats the purpose of having structured errors. There is now | |
| 1228 a rich set of defined errors you can use: | |
| 1229 | |
| 563 | 1230 quit |
| 1231 | |
| 442 | 1232 error |
| 1233 invalid-argument | |
| 563 | 1234 syntax-error |
| 1235 invalid-read-syntax | |
| 1236 invalid-regexp | |
| 1237 structure-formation-error | |
| 1238 list-formation-error | |
| 1239 malformed-list | |
| 1240 malformed-property-list | |
| 1241 circular-list | |
| 1242 circular-property-list | |
| 1243 invalid-function | |
| 1244 no-catch | |
| 1245 undefined-keystroke-sequence | |
| 1246 invalid-constant | |
| 442 | 1247 wrong-type-argument |
| 1248 args-out-of-range | |
| 1249 wrong-number-of-arguments | |
| 428 | 1250 |
| 442 | 1251 invalid-state |
| 1252 void-function | |
| 1253 cyclic-function-indirection | |
| 1254 void-variable | |
| 1255 cyclic-variable-indirection | |
| 509 | 1256 invalid-byte-code |
| 563 | 1257 stack-overflow |
| 1258 out-of-memory | |
| 1259 invalid-key-binding | |
| 1260 internal-error | |
| 442 | 1261 |
| 1262 invalid-operation | |
| 1263 invalid-change | |
| 1264 setting-constant | |
| 563 | 1265 protected-field |
| 442 | 1266 editing-error |
| 1267 beginning-of-buffer | |
| 1268 end-of-buffer | |
| 1269 buffer-read-only | |
| 1270 io-error | |
| 509 | 1271 file-error |
| 1272 file-already-exists | |
| 1273 file-locked | |
| 1274 file-supersession | |
| 563 | 1275 end-of-file |
| 1276 process-error | |
| 1277 network-error | |
| 509 | 1278 tooltalk-error |
| 563 | 1279 gui-error |
| 1280 dialog-box-error | |
| 1281 sound-error | |
| 1282 conversion-error | |
| 1283 text-conversion-error | |
| 1284 image-conversion-error | |
| 1285 base64-conversion-error | |
| 1286 selection-conversion-error | |
| 442 | 1287 arith-error |
| 1288 range-error | |
| 1289 domain-error | |
| 1290 singularity-error | |
| 1291 overflow-error | |
| 1292 underflow-error | |
| 509 | 1293 search-failed |
| 563 | 1294 printing-unreadable-object |
| 1295 unimplemented | |
| 509 | 1296 |
| 563 | 1297 Note the semantic differences between some of the more common errors: |
| 442 | 1298 |
| 563 | 1299 -- `invalid-argument' is for all cases where a bad value is encountered. |
| 1300 -- `invalid-constant' is for arguments where only a specific set of values | |
| 1301 is allowed. | |
| 1302 -- `syntax-error' is when complex structures (parsed strings, lists, | |
| 1303 and the like) are badly formed. If the problem is just a single bad | |
| 1304 value inside the structure, you should probably be using something else, | |
| 1305 e.g. `invalid-constant', `wrong-type-argument', or `invalid-argument'. | |
| 442 | 1306 -- `invalid-state' means that some settings have been changed in such a way |
| 1307 that their current state is unallowable. More and more, code is being | |
| 1308 written more carefully, and catches the error when the settings are being | |
| 1309 changed, rather than afterwards. This leads us to the next error: | |
| 1310 -- `invalid-change' means that an attempt is being made to change some settings | |
| 1311 into an invalid state. `invalid-change' is a type of `invalid-operation'. | |
| 1312 -- `invalid-operation' refers to all cases where code is trying to do something | |
| 563 | 1313 that's disallowed, or when an error occurred during an operation. (These |
| 1314 two concepts are merged because there's no clear distinction between them.) | |
| 1315 -- `io-error' refers to errors involving interaction with any external | |
| 1316 components (files, other programs, the operating system, etc). | |
| 442 | 1317 |
| 1318 See also `cerror', `signal', and `signal-error'." | |
| 1319 (while t (apply | |
| 1320 'cerror datum args))) | |
| 1321 | |
| 1322 (defun cerror (datum &rest args) | |
| 428 | 1323 "Like `error' but signals a continuable error." |
| 442 | 1324 (cond ((stringp datum) |
| 1325 (signal 'error (list (apply 'format datum args)))) | |
| 1326 ((defined-error-p datum) | |
| 1327 (signal datum args)) | |
| 1328 (t | |
| 1329 (error 'invalid-argument "datum not string or error symbol" datum)))) | |
| 428 | 1330 |
| 1331 (defmacro check-argument-type (predicate argument) | |
| 1332 "Check that ARGUMENT satisfies PREDICATE. | |
| 442 | 1333 This is a macro, and ARGUMENT is not evaluated. If ARGUMENT is an lvalue, |
| 1334 this function signals a continuable `wrong-type-argument' error until the | |
| 1335 returned value satisfies PREDICATE, and assigns the returned value | |
| 1336 to ARGUMENT. Otherwise, this function signals a non-continuable | |
| 1337 `wrong-type-argument' error if the returned value does not satisfy PREDICATE." | |
| 1338 (if (symbolp argument) | |
| 1339 `(if (not (,(eval predicate) ,argument)) | |
| 1340 (setq ,argument | |
| 1341 (wrong-type-argument ,predicate ,argument))) | |
| 1342 `(if (not (,(eval predicate) ,argument)) | |
| 1343 (signal-error 'wrong-type-argument (list ,predicate ,argument))))) | |
| 428 | 1344 |
| 872 | 1345 (defun args-out-of-range (value min max) |
| 1346 "Signal an error until the correct in-range value is given by the user. | |
| 1347 This function loops, signalling a continuable `args-out-of-range' error | |
| 1348 with VALUE, MIN and MAX as the data associated with the error and then | |
| 1349 checking the returned value to make sure it's not outside the given | |
| 1350 boundaries \(nil for either means no boundary on that side). At that | |
| 1351 point, the gotten value is returned." | |
| 1352 (loop | |
| 1353 for newval = (signal 'args-out-of-range (list value min max)) | |
| 1354 do (setq value newval) | |
| 1355 finally return value | |
| 1356 while (not (argument-in-range-p value min max)))) | |
| 1357 | |
| 1358 (defun argument-in-range-p (argument min max) | |
| 1359 "Return true if ARGUMENT is within the range of [MIN, MAX]. | |
| 1360 This includes boundaries. nil for either value means no limit on that side." | |
| 1361 (and (or (not min) (<= min argument)) | |
| 1362 (or (not max) (<= argument max)))) | |
| 1363 | |
| 1364 (defmacro check-argument-range (argument min max) | |
| 1365 "Check that ARGUMENT is within the range [MIN, MAX]. | |
| 1366 This is a macro, and ARGUMENT is not evaluated. If ARGUMENT is an lvalue, | |
| 1367 this function signals a continuable `args-out-of-range' error until the | |
| 1368 returned value is within range, and assigns the returned value | |
| 1369 to ARGUMENT. Otherwise, this function signals a non-continuable | |
| 1370 `args-out-of-range' error if the returned value is out of range." | |
| 1371 (if (symbolp argument) | |
| 1372 `(if (not (argument-in-range-p ,argument ,min ,max)) | |
| 924 | 1373 (setq ,argument |
| 1374 (args-out-of-range ,argument ,min ,max))) | |
| 872 | 1375 (let ((newsym (gensym))) |
| 1376 `(let ((,newsym ,argument)) | |
| 924 | 1377 (if (not (argument-in-range-p ,newsym ,min ,max)) |
| 4103 | 1378 (signal-error 'args-out-of-range (list ,newsym ,min ,max))))))) |
| 872 | 1379 |
| 428 | 1380 (defun signal-error (error-symbol data) |
| 1381 "Signal a non-continuable error. Args are ERROR-SYMBOL, and associated DATA. | |
| 1382 An error symbol is a symbol defined using `define-error'. | |
| 1383 DATA should be a list. Its elements are printed as part of the error message. | |
| 1384 If the signal is handled, DATA is made available to the handler. | |
| 1385 See also `signal', and the functions to handle errors: `condition-case' | |
| 1386 and `call-with-condition-handler'." | |
| 1387 (while t | |
| 1388 (signal error-symbol data))) | |
| 1389 | |
| 1390 (defun define-error (error-sym doc-string &optional inherits-from) | |
| 1391 "Define a new error, denoted by ERROR-SYM. | |
| 1392 DOC-STRING is an informative message explaining the error, and will be | |
| 1393 printed out when an unhandled error occurs. | |
| 1394 ERROR-SYM is a sub-error of INHERITS-FROM (which defaults to `error'). | |
| 1395 | |
| 1396 \[`define-error' internally works by putting on ERROR-SYM an `error-message' | |
| 1397 property whose value is DOC-STRING, and an `error-conditions' property | |
| 1398 that is a list of ERROR-SYM followed by each of its super-errors, up | |
| 1399 to and including `error'. You will sometimes see code that sets this up | |
| 1400 directly rather than calling `define-error', but you should *not* do this | |
| 1401 yourself.]" | |
| 1402 (check-argument-type 'symbolp error-sym) | |
| 1403 (check-argument-type 'stringp doc-string) | |
| 1404 (put error-sym 'error-message doc-string) | |
| 1405 (or inherits-from (setq inherits-from 'error)) | |
| 1406 (let ((conds (get inherits-from 'error-conditions))) | |
| 1407 (or conds (signal-error 'error (list "Not an error symbol" error-sym))) | |
| 1408 (put error-sym 'error-conditions (cons error-sym conds)))) | |
| 1409 | |
| 442 | 1410 (defun defined-error-p (sym) |
| 1411 "Returns non-nil if SYM names a currently-defined error." | |
| 1412 (and (symbolp sym) (not (null (get sym 'error-conditions))))) | |
| 1413 | |
| 793 | 1414 (defun backtrace-in-condition-handler-eliminating-handler (handler-arg-name) |
| 1415 "Return a backtrace inside of a condition handler, eliminating the handler. | |
| 1416 This is for use in the condition handler inside of call-with-condition-handler, | |
| 1417 when written like this: | |
| 1418 | |
| 1419 \(call-with-condition-handler | |
| 1420 #'(lambda (__some_weird_arg__) | |
| 1421 do the handling ...) | |
| 1422 #'(lambda () | |
| 1423 do the stuff that might cause an error)) | |
| 1424 | |
| 1425 Pass in the name (a symbol) of the argument used in the lambda function | |
| 1426 that specifies the handler, and make sure the argument name is unique, and | |
| 1427 this function generates a backtrace and strips off the part above where the | |
| 1428 error occurred (i.e. the handler itself)." | |
| 1429 (let* ((bt (with-output-to-string (backtrace nil t))) | |
| 1430 (bt (save-match-data | |
| 1431 ;; Try to eliminate the part of the backtrace | |
| 1432 ;; above where the error occurred. | |
| 1433 (if (string-match | |
| 1434 (concat "bind (\\(?:.* \\)?" (symbol-name handler-arg-name) | |
| 1435 "\\(?:.* \\)?)[ \t\n]*\\(?:(lambda \\|#<compiled-function \\)(" | |
| 1436 (symbol-name handler-arg-name) | |
| 1437 ").*\n\\(\\(?:.\\|\n\\)*\\)$") | |
| 1438 bt) (match-string 1 bt) bt)))) | |
| 1439 bt)) | |
| 1440 | |
| 1441 (put 'with-trapping-errors 'lisp-indent-function 0) | |
| 1442 (defmacro with-trapping-errors (&rest keys-body) | |
| 1443 "Trap errors in BODY, outputting a warning and a backtrace. | |
| 1444 Usage looks like | |
| 1445 | |
| 1446 \(with-trapping-errors | |
| 1447 [:operation OPERATION] | |
| 1448 [:error-form ERROR-FORM] | |
| 1449 [:no-backtrace NO-BACKTRACE] | |
| 1450 [:class CLASS] | |
| 1451 [:level LEVEL] | |
| 1452 [:resignal RESIGNAL] | |
| 1453 BODY) | |
| 1454 | |
| 1455 Return value without error is whatever BODY returns. With error, return | |
| 1456 result of ERROR-FORM (which will be evaluated only when the error actually | |
| 1457 occurs), which defaults to nil. OPERATION is given in the warning message. | |
| 1458 CLASS and LEVEL are the warning class and level (default to class | |
| 1459 `general', level `warning'). If NO-BACKTRACE is given, no backtrace is | |
| 1460 displayed. If RESIGNAL is given, the error is resignaled after the warning | |
| 1461 is displayed and the ERROR-FORM is executed." | |
| 1462 (let ((operation "unknown") | |
| 1463 (error-form nil) | |
| 1464 (no-backtrace nil) | |
| 1465 (class ''general) | |
| 1466 (level ''warning) | |
| 1467 (resignal nil)) | |
| 1468 (let* ((keys '(operation error-form no-backtrace class level resignal)) | |
| 1469 (keys-with-colon | |
| 1470 (mapcar #'(lambda (sym) | |
| 1471 (intern (concat ":" (symbol-name sym)))) keys))) | |
| 1472 (while (memq (car keys-body) keys-with-colon) | |
| 1473 (let* ((key-with-colon (pop keys-body)) | |
| 1474 (key (intern (substring (symbol-name key-with-colon) 1)))) | |
| 1475 (set key (pop keys-body))))) | |
| 1476 `(condition-case ,(if resignal '__cte_cc_var__ nil) | |
| 1477 (call-with-condition-handler | |
| 1478 #'(lambda (__call_trapping_errors_arg__) | |
| 1479 (let ((errstr (error-message-string | |
| 1480 __call_trapping_errors_arg__))) | |
| 1481 ,(if no-backtrace | |
| 1482 `(lwarn ,class ,level | |
| 1483 (if (warning-level-< | |
| 1484 ,level | |
| 1485 display-warning-minimum-level) | |
| 1486 "Error in %s: %s" | |
| 1487 "Error in %s:\n%s\n") | |
| 1488 ,operation errstr) | |
| 1489 `(lwarn ,class ,level | |
| 1490 "Error in %s: %s\n\nBacktrace follows:\n\n%s" | |
| 1491 ,operation errstr | |
| 1492 (backtrace-in-condition-handler-eliminating-handler | |
| 1493 '__call_trapping_errors_arg__))))) | |
| 1494 #'(lambda () | |
| 1495 (progn ,@keys-body))) | |
| 1496 (error | |
| 1497 ,error-form | |
| 1498 ,@(if resignal '((signal (car __cte_cc_var__) (cdr __cte_cc_var__))))) | |
| 1499 ))) | |
| 1500 | |
| 428 | 1501 ;;;; Miscellanea. |
| 1502 | |
| 1503 ;; This is now in C. | |
| 444 | 1504 ;(defun buffer-substring-no-properties (start end) |
| 1505 ; "Return the text from START to END, without text properties, as a string." | |
| 1506 ; (let ((string (buffer-substring start end))) | |
| 428 | 1507 ; (set-text-properties 0 (length string) nil string) |
| 1508 ; string)) | |
| 1509 | |
| 1510 (defun get-buffer-window-list (&optional buffer minibuf frame) | |
| 1511 "Return windows currently displaying BUFFER, or nil if none. | |
| 1512 BUFFER defaults to the current buffer. | |
| 1513 See `walk-windows' for the meaning of MINIBUF and FRAME." | |
| 1514 (cond ((null buffer) | |
| 1515 (setq buffer (current-buffer))) | |
| 1516 ((not (bufferp buffer)) | |
| 1517 (setq buffer (get-buffer buffer)))) | |
| 1518 (let (windows) | |
| 1519 (walk-windows (lambda (window) | |
| 1520 (if (eq (window-buffer window) buffer) | |
| 1521 (push window windows))) | |
| 1522 minibuf frame) | |
| 1523 windows)) | |
| 1524 | |
| 1525 (defun ignore (&rest ignore) | |
| 1526 "Do nothing and return nil. | |
| 1527 This function accepts any number of arguments, but ignores them." | |
| 1528 (interactive) | |
| 1529 nil) | |
| 1530 | |
| 883 | 1531 ;; defined in lisp/bindings.el in GNU Emacs. |
| 1532 (defmacro bound-and-true-p (var) | |
| 1533 "Return the value of symbol VAR if it is bound, else nil." | |
| 1534 `(and (boundp (quote ,var)) ,var)) | |
| 1535 | |
| 1536 ;; `propertize' is a builtin in GNU Emacs 21. | |
| 1537 (defun propertize (string &rest properties) | |
| 1538 "Return a copy of STRING with text properties added. | |
| 1539 First argument is the string to copy. | |
| 1540 Remaining arguments form a sequence of PROPERTY VALUE pairs for text | |
| 1541 properties to add to the result." | |
| 1542 (let ((str (copy-sequence string))) | |
| 1543 (add-text-properties 0 (length str) | |
| 1544 properties | |
| 1545 str) | |
| 1546 str)) | |
| 1547 | |
| 1548 ;; `delete-and-extract-region' is a builtin in GNU Emacs 21. | |
| 1549 (defun delete-and-extract-region (start end) | |
| 1550 "Delete the text between START and END and return it." | |
| 1551 (let ((region (buffer-substring start end))) | |
| 1552 (delete-region start end) | |
| 1553 region)) | |
| 1554 | |
| 428 | 1555 (define-function 'eval-in-buffer 'with-current-buffer) |
| 1556 (make-obsolete 'eval-in-buffer 'with-current-buffer) | |
| 1557 | |
| 1558 ;;; The real defn is in abbrev.el but some early callers | |
| 1559 ;;; (eg lisp-mode-abbrev-table) want this before abbrev.el is loaded... | |
| 1560 | |
| 1561 (if (not (fboundp 'define-abbrev-table)) | |
| 1562 (progn | |
| 1563 (setq abbrev-table-name-list '()) | |
| 924 | 1564 (fset 'define-abbrev-table |
| 1565 (function (lambda (name defs) | |
| 1566 ;; These are fixed-up when abbrev.el loads. | |
| 1567 (setq abbrev-table-name-list | |
| 1568 (cons (cons name defs) | |
| 1569 abbrev-table-name-list))))))) | |
| 428 | 1570 |
| 1571 ;;; `functionp' has been moved into C. | |
| 1572 | |
| 1573 ;;(defun functionp (object) | |
| 1574 ;; "Non-nil if OBJECT can be called as a function." | |
| 1575 ;; (or (and (symbolp object) (fboundp object)) | |
| 1576 ;; (subrp object) | |
| 1577 ;; (compiled-function-p object) | |
| 1578 ;; (eq (car-safe object) 'lambda))) | |
| 1579 | |
| 1580 (defun function-interactive (function) | |
| 1581 "Return the interactive specification of FUNCTION. | |
| 1582 FUNCTION can be any funcallable object. | |
| 1583 The specification will be returned as the list of the symbol `interactive' | |
| 1584 and the specs. | |
| 1585 If FUNCTION is not interactive, nil will be returned." | |
| 1586 (setq function (indirect-function function)) | |
| 1587 (cond ((compiled-function-p function) | |
| 1588 (compiled-function-interactive function)) | |
| 1589 ((subrp function) | |
| 1590 (subr-interactive function)) | |
| 1591 ((eq (car-safe function) 'lambda) | |
| 1592 (let ((spec (if (stringp (nth 2 function)) | |
| 1593 (nth 3 function) | |
| 1594 (nth 2 function)))) | |
| 1595 (and (eq (car-safe spec) 'interactive) | |
| 1596 spec))) | |
| 1597 (t | |
| 1598 (error "Non-funcallable object: %s" function)))) | |
| 1599 | |
| 442 | 1600 (defun function-allows-args (function n) |
| 1601 "Return whether FUNCTION can be called with N arguments." | |
| 1602 (and (<= (function-min-args function) n) | |
| 1603 (or (null (function-max-args function)) | |
| 1604 (<= n (function-max-args function))))) | |
| 1605 | |
| 428 | 1606 ;; This function used to be an alias to `buffer-substring', except |
| 1607 ;; that FSF Emacs 20.4 added a BUFFER argument in an incompatible way. | |
| 1608 ;; The new FSF's semantics makes more sense, but we try to support | |
| 1609 ;; both for backward compatibility. | |
| 1610 (defun buffer-string (&optional buffer old-end old-buffer) | |
| 1611 "Return the contents of the current buffer as a string. | |
| 1612 If narrowing is in effect, this function returns only the visible part | |
| 1613 of the buffer. | |
| 1614 | |
| 1615 If BUFFER is specified, the contents of that buffer are returned. | |
| 1616 | |
| 1617 The arguments OLD-END and OLD-BUFFER are supported for backward | |
| 1618 compatibility with pre-21.2 XEmacsen times when arguments to this | |
| 1619 function were (buffer-string &optional START END BUFFER)." | |
| 1620 (cond | |
| 1621 ((or (stringp buffer) (bufferp buffer)) | |
| 1622 ;; Most definitely the new way. | |
| 1623 (buffer-substring nil nil buffer)) | |
| 1624 ((or (stringp old-buffer) (bufferp old-buffer) | |
| 1625 (natnump buffer) (natnump old-end)) | |
| 1626 ;; Definitely the old way. | |
| 1627 (buffer-substring buffer old-end old-buffer)) | |
| 1628 (t | |
| 1629 ;; Probably the old way. | |
| 1630 (buffer-substring buffer old-end old-buffer)))) | |
| 1631 | |
| 1333 | 1632 ;; BEGIN SYNC WITH FSF 21.2 |
| 1633 | |
| 428 | 1634 ;; This was not present before. I think Jamie had some objections |
| 1635 ;; to this, so I'm leaving this undefined for now. --ben | |
| 1636 | |
| 1637 ;;; The objection is this: there is more than one way to load the same file. | |
| 1638 ;;; "foo", "foo.elc", "foo.el", and "/some/path/foo.elc" are all different | |
| 1639 ;;; ways to load the exact same code. `eval-after-load' is too stupid to | |
| 1640 ;;; deal with this sort of thing. If this sort of feature is desired, then | |
| 1641 ;;; it should work off of a hook on `provide'. Features are unique and | |
| 1642 ;;; the arguments to (load) are not. --Stig | |
| 1643 | |
| 1644 ;; We provide this for FSFmacs compatibility, at least until we devise | |
| 1645 ;; something better. | |
| 1646 | |
| 1647 ;;;; Specifying things to do after certain files are loaded. | |
| 1648 | |
| 1649 (defun eval-after-load (file form) | |
| 1650 "Arrange that, if FILE is ever loaded, FORM will be run at that time. | |
| 1651 This makes or adds to an entry on `after-load-alist'. | |
| 1652 If FILE is already loaded, evaluate FORM right now. | |
| 1653 It does nothing if FORM is already on the list for FILE. | |
| 1333 | 1654 FILE must match exactly. Normally FILE is the name of a library, |
| 1655 with no directory or extension specified, since that is how `load' | |
| 1656 is normally called." | |
| 1657 ;; Make sure `load-history' contains the files dumped with Emacs | |
| 1658 ;; for the case that FILE is one of the files dumped with Emacs. | |
| 1659 (if-fboundp 'load-symbol-file-load-history | |
| 1660 (load-symbol-file-load-history)) | |
| 428 | 1661 ;; Make sure there is an element for FILE. |
| 1662 (or (assoc file after-load-alist) | |
| 1663 (setq after-load-alist (cons (list file) after-load-alist))) | |
| 1664 ;; Add FORM to the element if it isn't there. | |
| 1665 (let ((elt (assoc file after-load-alist))) | |
| 1666 (or (member form (cdr elt)) | |
| 1667 (progn | |
| 1668 (nconc elt (list form)) | |
| 1669 ;; If the file has been loaded already, run FORM right away. | |
| 1670 (and (assoc file load-history) | |
| 1671 (eval form))))) | |
| 1672 form) | |
| 1673 (make-compatible 'eval-after-load "") | |
| 1674 | |
| 1675 (defun eval-next-after-load (file) | |
| 1676 "Read the following input sexp, and run it whenever FILE is loaded. | |
| 1677 This makes or adds to an entry on `after-load-alist'. | |
| 1678 FILE should be the name of a library, with no directory name." | |
| 1679 (eval-after-load file (read))) | |
| 1680 (make-compatible 'eval-next-after-load "") | |
| 1681 | |
| 1333 | 1682 ;; END SYNC WITH FSF 21.2 |
| 428 | 1683 |
| 3000 | 1684 ;; BEGIN SYNC WITH FSF 22.0.50.1 (CVS) |
| 1685 (defun delete-dups (list) | |
| 1686 "Destructively remove `equal' duplicates from LIST. | |
| 1687 Store the result in LIST and return it. LIST must be a proper list. | |
| 1688 Of several `equal' occurrences of an element in LIST, the first | |
| 1689 one is kept." | |
| 1690 (let ((tail list)) | |
| 1691 (while tail | |
| 1692 (setcdr tail (delete (car tail) (cdr tail))) | |
| 1693 (setq tail (cdr tail)))) | |
| 1694 list) | |
| 1695 | |
| 1696 ;; END SYNC WITH FSF 22.0.50.1 (CVS) | |
| 1697 | |
| 2525 | 1698 ;; (defun shell-quote-argument (argument) in process.el. |
| 1699 | |
| 1700 ;; (defun make-syntax-table (&optional oldtable) in syntax.el. | |
| 1701 | |
|
4575
eecd28508f4a
Add #'subr-arity, API taken from GNU, implementation our own.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4516
diff
changeset
|
1702 ;; (defun syntax-after (pos) in syntax.el. |
| 2525 | 1703 |
| 1704 ;; global-set-key, local-set-key, global-unset-key, local-unset-key in | |
| 1705 ;; keymap.el. | |
| 1706 | |
| 1707 ;; frame-configuration-p is in frame.el. | |
| 1708 | |
| 1709 ;; functionp is built-in. | |
| 1710 | |
| 1711 ;; interactive-form in obsolete.el. | |
| 1712 | |
| 1713 ;; assq-del-all in obsolete.el. | |
| 1714 | |
| 4266 | 1715 ;; make-temp-file in files.el. |
| 2525 | 1716 |
| 1717 ;; add-minor-mode in modeline.el. | |
| 1718 | |
| 1719 ;; text-clone stuff #### doesn't exist; should go in text-props.el and | |
| 1720 ;; requires changes to extents.c (modification hooks). | |
| 1721 | |
| 1722 ;; play-sound is built-in. | |
| 1723 | |
| 1724 ;; define-mail-user-agent is in simple.el. | |
| 1725 | |
|
4501
c4fd85dd95bd
Add #'skip-chars-quote to subr.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
4463
diff
changeset
|
1726 ;; XEmacs; added. |
|
c4fd85dd95bd
Add #'skip-chars-quote to subr.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
4463
diff
changeset
|
1727 (defun skip-chars-quote (string) |
|
c4fd85dd95bd
Add #'skip-chars-quote to subr.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
4463
diff
changeset
|
1728 "Return a string that means all characters in STRING will be skipped, |
|
c4fd85dd95bd
Add #'skip-chars-quote to subr.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
4463
diff
changeset
|
1729 if passed to `skip-chars-forward' or `skip-chars-backward'. |
|
c4fd85dd95bd
Add #'skip-chars-quote to subr.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
4463
diff
changeset
|
1730 |
|
c4fd85dd95bd
Add #'skip-chars-quote to subr.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
4463
diff
changeset
|
1731 Ranges and carets are not treated specially. This implementation is |
|
c4fd85dd95bd
Add #'skip-chars-quote to subr.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
4463
diff
changeset
|
1732 in Lisp; do not use it in performance-critical code." |
|
c4fd85dd95bd
Add #'skip-chars-quote to subr.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
4463
diff
changeset
|
1733 (let ((list (delete-duplicates (string-to-list string) :test #'=))) |
|
4504
b82fdf7305ee
Correct the implementation, add a few basic tests for #'skip-chars-quote.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4501
diff
changeset
|
1734 (when (/= 1 (length list)) ;; No quoting needed in a string of length 1. |
|
b82fdf7305ee
Correct the implementation, add a few basic tests for #'skip-chars-quote.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4501
diff
changeset
|
1735 (when (eq ?^ (car list)) |
|
b82fdf7305ee
Correct the implementation, add a few basic tests for #'skip-chars-quote.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4501
diff
changeset
|
1736 (setq list (nconc (cdr list) '(?^)))) |
|
b82fdf7305ee
Correct the implementation, add a few basic tests for #'skip-chars-quote.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4501
diff
changeset
|
1737 (when (memq ?\\ list) |
|
b82fdf7305ee
Correct the implementation, add a few basic tests for #'skip-chars-quote.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4501
diff
changeset
|
1738 (setq list (delq ?\\ list) |
|
b82fdf7305ee
Correct the implementation, add a few basic tests for #'skip-chars-quote.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4501
diff
changeset
|
1739 list (nconc (list ?\\ ?\\) list))) |
|
b82fdf7305ee
Correct the implementation, add a few basic tests for #'skip-chars-quote.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4501
diff
changeset
|
1740 (when (memq ?- list) |
|
b82fdf7305ee
Correct the implementation, add a few basic tests for #'skip-chars-quote.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4501
diff
changeset
|
1741 (setq list (delq ?- list) |
|
b82fdf7305ee
Correct the implementation, add a few basic tests for #'skip-chars-quote.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4501
diff
changeset
|
1742 list (nconc list '(?\\ ?-))))) |
|
4501
c4fd85dd95bd
Add #'skip-chars-quote to subr.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
4463
diff
changeset
|
1743 (apply #'string list))) |
|
c4fd85dd95bd
Add #'skip-chars-quote to subr.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
4463
diff
changeset
|
1744 |
|
4575
eecd28508f4a
Add #'subr-arity, API taken from GNU, implementation our own.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4516
diff
changeset
|
1745 ;; XEmacs addition to subr.el; docstring and API taken initially from GNU's |
|
eecd28508f4a
Add #'subr-arity, API taken from GNU, implementation our own.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4516
diff
changeset
|
1746 ;; data.c, revision 1.275, GPLv2. |
|
eecd28508f4a
Add #'subr-arity, API taken from GNU, implementation our own.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4516
diff
changeset
|
1747 (defun subr-arity (subr) |
|
eecd28508f4a
Add #'subr-arity, API taken from GNU, implementation our own.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4516
diff
changeset
|
1748 "Return minimum and maximum number of args allowed for SUBR. |
|
eecd28508f4a
Add #'subr-arity, API taken from GNU, implementation our own.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4516
diff
changeset
|
1749 SUBR must be a built-in function (not just a symbol that refers to one). |
|
eecd28508f4a
Add #'subr-arity, API taken from GNU, implementation our own.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4516
diff
changeset
|
1750 The returned value is a pair (MIN . MAX). MIN is the minimum number |
|
eecd28508f4a
Add #'subr-arity, API taken from GNU, implementation our own.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4516
diff
changeset
|
1751 of args. MAX is the maximum number or the symbol `many', for a |
|
eecd28508f4a
Add #'subr-arity, API taken from GNU, implementation our own.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4516
diff
changeset
|
1752 function with `&rest' args, or `unevalled' for a special form. |
|
eecd28508f4a
Add #'subr-arity, API taken from GNU, implementation our own.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4516
diff
changeset
|
1753 |
|
eecd28508f4a
Add #'subr-arity, API taken from GNU, implementation our own.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4516
diff
changeset
|
1754 See also `special-form-p', `subr-min-args', `subr-max-args', |
|
eecd28508f4a
Add #'subr-arity, API taken from GNU, implementation our own.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4516
diff
changeset
|
1755 `function-allows-args'. " |
|
eecd28508f4a
Add #'subr-arity, API taken from GNU, implementation our own.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4516
diff
changeset
|
1756 (check-argument-type #'subrp subr) |
|
eecd28508f4a
Add #'subr-arity, API taken from GNU, implementation our own.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4516
diff
changeset
|
1757 (cons (subr-min-args subr) |
|
eecd28508f4a
Add #'subr-arity, API taken from GNU, implementation our own.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4516
diff
changeset
|
1758 (cond |
|
eecd28508f4a
Add #'subr-arity, API taken from GNU, implementation our own.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4516
diff
changeset
|
1759 ((special-form-p subr) |
|
eecd28508f4a
Add #'subr-arity, API taken from GNU, implementation our own.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4516
diff
changeset
|
1760 'unevalled) |
|
eecd28508f4a
Add #'subr-arity, API taken from GNU, implementation our own.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4516
diff
changeset
|
1761 ((null (subr-max-args subr)) |
|
eecd28508f4a
Add #'subr-arity, API taken from GNU, implementation our own.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4516
diff
changeset
|
1762 'many) |
|
eecd28508f4a
Add #'subr-arity, API taken from GNU, implementation our own.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4516
diff
changeset
|
1763 (t (subr-max-args subr))))) |
|
eecd28508f4a
Add #'subr-arity, API taken from GNU, implementation our own.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4516
diff
changeset
|
1764 |
| 428 | 1765 ;;; subr.el ends here |
