aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/subr.el
Commit message (Collapse)AuthorAgeFilesLines
* Update calls to make-obsolete with a WHEN argument.Stefan Monnier2000-06-011-2/+2
|
* (remove-hook): Don't turn the hook's value into a list.Stefan Monnier2000-05-211-5/+4
|
* (remove-hook): `setq' hook-value, not `set'.Stefan Monnier2000-05-161-1/+1
|
* (add-hook): setq hook-value, not setSam Steingold2000-05-161-1/+1
|
* (substitute-key-definition): Add comment describingGerd Moellmann2000-05-111-0/+7
| | | | the meaning of PREFIX.
* (add-hook, remove-hook): Make hook buffer-local if needed..Stefan Monnier2000-05-101-56/+41
| | | | | (add-minor-mode): Don't make the variable buffer-local and add a reference to define-minor-mode in the docstring.
* (substitute-key-definition): Clarify documentation.Gerd Moellmann2000-05-041-1/+1
|
* (add-minor-mode): Handle AFTER for keymaps. Don'tGerd Moellmann2000-05-031-7/+16
| | | | set TOGGLE's value.
* *** empty log message ***Gerd Moellmann2000-04-281-11/+44
|
* (add-minor-mode): Use `set' instead of `setq'.Gerd Moellmann2000-04-271-1/+1
|
* (add-minor-mode): Make argument MAP optional.Gerd Moellmann2000-04-261-3/+3
|
* (add-minor-mode): New function.Gerd Moellmann2000-04-261-0/+15
|
* (read-passwd): Use read-char-exclusive.Richard M. Stallman2000-04-171-1/+1
|
* (member-ignore-case): New function.Gerd Moellmann2000-04-031-0/+12
|
* (combine-run-hooks): New function.Stefan Monnier2000-03-211-0/+29
|
* (replace-regexp-in-string): Renamed fromDave Love2000-03-141-3/+7
| | | | replace-regexps-in-string. Doc fix.
* (replace-regexps-in-string): Properly handle the case whereStefan Monnier2000-03-081-17/+16
| | | | we match an empty string.
* (assq-delete-all): Renamed from assoc-delete-all.Gerd Moellmann2000-02-291-2/+1
| | | | Don't copy alist.
* (define-key-after): Default AFTER to t. Doc fix.Dave Love2000-02-231-5/+8
|
* (when, unless, split-string): Doc fix.Dave Love2000-02-221-5/+61
| | | | | | (read-passwd): Move call of clear-this-command-keys to the right place. (replace-regexps-in-string): New function.
* Move out indent and edebug specs for when and unless.Dave Love2000-01-281-4/+0
|
* (with-syntax-table): Use make-symbol, not gensym.Richard M. Stallman2000-01-211-2/+2
|
* Make the definitions of dolist and dotimes workRichard M. Stallman2000-01-211-15/+19
| | | | without the rest of CL.
* (dolist, dotimes): Moved from cl-macs.el.Richard M. Stallman2000-01-211-0/+26
|
* (with-syntax-table): Moved from simple.el.Richard M. Stallman2000-01-121-0/+16
|
* Fix bootstrapping problems.Paul Eggert1999-10-191-5/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use the system locale to specify Emacs locale defaults. * international/mule-cmds.el (global-map): Do not use backquote, because that makes a bootstrapping problem if you need to recompile all Lisp files using interpreted code. * international/mule.el (charset-id, charset-bytes, charset-dimension, charset-chars, charset-width, charset-direction, charset-iso-final-char, charset-iso-graphic-plane, charset-reverse-charset, charset-short-name, charset-long-name, charset-description, charset-plist): Likewise. * subr.el (save-match-data): Likewise. * international/mule-cmds.el (set-display-table-and-terminal-coding-system): New function, containing code migrated out of set-language-environment. (set-language-environment, set-locale-environment): Use it. (locale-translation-file-name): Moved here from startup.el. (locale-language-names, locale-preferred-coding-systems): New vars. (locale-name-match, set-locale-environment): New functions. * language/japan-util.el (setup-japanese-environment-internal): Prefer japanese-iso-8bit if the system-type is usg-unix-v. * startup.el (iso-8859-n-locale-regexp): Remove. (locale-translation-file-name): Move to mule-cmds.el. (command-line): Move locale-stuff into set-locale-environment.
* * subr.el (with-current-buffer): don't use backquotes to avoidStefan Monnier1999-10-131-3/+3
| | | | | | | bootstrapping problems. loadup.el (load-path): add subdirs for bootstrapping. (docstrings): ignore errors during bootstrapping. (args): new `bootstrap' argument (for use in place of `dump').
* (shell-quote-argument): Quote argument with doubleEli Zaretskii1999-09-141-2/+13
| | | | quotes for ms-dos.
* (make-temp-file): New function.Richard M. Stallman1999-09-111-0/+24
|
* (push): Doc fix.Richard M. Stallman1999-09-071-1/+1
|
* (push): Fix typo.Dave Love1999-08-311-2/+2
|
* Fix previous change.Richard M. Stallman1999-08-291-4/+4
|
* (push, pop): New macros.Richard M. Stallman1999-08-291-0/+15
|
* (assoc-ignore-case, assoc-ignore-representation): Moved here from simple.el.Karl Heuer1999-08-161-0/+22
|
* (point-at-eol, point-at-bol): New aliases.Karl Heuer1999-08-161-0/+2
|
* (assoc-delete-all): New function, renamed from frame-delete-all.Dave Love1999-07-301-0/+11
|
* (add-to-list): Doc fix.Richard M. Stallman1999-05-221-0/+2
|
* (with-temp-message): Fix the other call to message to use %s.Karl Heuer1999-05-071-1/+1
|
* (with-temp-message): Use %s so % in old msg won't fool us.Karl Heuer1999-02-231-2/+2
|
* (momentary-string-display): Bind inhibit-read-only.Richard M. Stallman1999-02-161-1/+1
|
* *** empty log message ***Dan Nicolaescu1999-02-021-1/+1
|
* (subst-char-in-string): New function.Andrew Innes1999-01-171-0/+11
|
* Doc fix.Simon Marshall1999-01-061-2/+4
|
* (with-temp-message): Don't display MESSAGE if nil.Simon Marshall1999-01-061-4/+9
|
* (read-passwd): Ignore input methods.Karl Heuer1998-12-161-1/+1
|
* (make-local-hook): Return the hook variable.Richard M. Stallman1998-11-301-1/+4
|
* Added with-temp-message.Simon Marshall1998-11-191-7/+20
|
* (read-passwd): Use clear-this-command-keys.Richard M. Stallman1998-10-131-0/+1
|
* (remove-hook): Check list values to avoid errors.Dave Love1998-09-211-2/+3
|
* (sref): Make it an alias of aref. Make theKenichi Handa1998-08-281-8/+3
| | | | | byte-compiler warn that it is obsolete. (char-bytes): Make the byte-compiler warn that it is obsolete.