summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
Commit message (Collapse)AuthorAgeFilesLines
...
* (buffer-end): Doc fix.Richard M. Stallman2005-02-061-0/+3
|
* (lisp-indent-function): Fix bug:Thien-Thi Nguyen2005-02-011-3/+3
| | | | When delegating, order args in the funcall correctly.
* (lisp-indent-function): Doc fix.Thien-Thi Nguyen2005-02-011-2/+2
|
* (eval-defun-1): Make sure `defvar' always sets the default value.Stefan Monnier2005-01-281-2/+2
|
* (backward-kill-sexp, kill-sexp): Doc fixes.Richard M. Stallman2005-01-171-6/+6
|
* (lm-with-file): Use Lisp mode in temp buffer.Richard M. Stallman2005-01-151-1/+6
| | | | In non-temp buffer, switch syntax table temporarily.
* (indent-pp-sexp): Doc fix.Richard M. Stallman2005-01-151-1/+2
|
* Fixed typo in Commentary section.Reiner Steib2005-01-121-1/+1
|
* Comment changes.Richard M. Stallman2005-01-091-2/+2
|
* (find-face-definition): Renamed from find-face.Richard M. Stallman2005-01-071-1/+3
|
* Update copyright. Update commentary to mention rx syntax support.John Paul Wallington2005-01-061-4/+4
|
* (find-variable, find-variable-other-window, find-variable-other-frame):Richard M. Stallman2005-01-051-8/+8
| | | | | | Fix the TYPE args to find-function-read and find-function-do-it. (find-function): Doc fix. (find-function-at-point): Replace function-at-point alias.
* Doc fixes.Richard M. Stallman2005-01-051-55/+108
| | | | | | | | | | (find-face-regexp): New variable. (find-function-regexp-alist): New variable. (find-function-C-source): Third arg is now TYPE. (find-function-search-for-symbol): Handle general TYPE. (find-function-read, find-function-do-it): Handle general TYPE. (find-definition-noselect, find-face): New functions. (function-at-point): Alias deleted.
* (find-variable-regexp): Avoid defface.Stefan Monnier2005-01-031-4/+4
|
* (mark-sexp, mark-defun): New arg ALLOW-EXTENDRichard M. Stallman2004-12-291-11/+16
| | | | enables the feature to extend the existing region.
* (debugger-make-xrefs): Call symbol-file with `defun'.Richard M. Stallman2004-12-271-1/+1
|
* (find-function-noselect): Call symbol-file with `defun'.Richard M. Stallman2004-12-271-3/+2
| | | | (find-variable-noselect): Call symbol-file with `defvar'.
* Comment change.Richard M. Stallman2004-12-211-1/+1
|
* (beginning-of-defun, end-of-defun): Don'tKim F. Storm2004-12-141-4/+2
| | | | use inhibit-mark-movement.
* (elint-standard-variables, elint-unknown-builtin-args): Move definitions up.Richard M. Stallman2004-12-131-79/+79
|
* * emacs-lisp/lisp.el (beginning-of-defun, end-of-defun):Juri Linkov2004-12-131-16/+22
| | | | | | | | | | Do not push mark when mark is active in transient-mark-mode. * emacs-lisp/lisp.el (mark-sexp, mark-defun): Extend the region when mark is active in transient-mark-mode, regardless of the last command. Doc fix. * emacs-lisp/lisp.el (mark-sexp): Reverse the condition for preserving direction, to mark forward instead of backward when mark is equal to point (e.g. when C-SPC C-M-SPC is typed in t-m-m).
* (checkdoc-continue, checkdoc-comments, checkdoc-message-text, checkdoc-defun):Stefan Monnier2004-12-111-6/+6
| | | | Fix format messages for calls to `error'.
* (regexp-opt-depth): Use subregexp-context-p.Stefan Monnier2004-12-061-30/+16
| | | | | (regexp-opt-not-groupie*-re): Remove. (regexp-opt): Properly handle inputs with duplicate entries.
* (elint-standard-variables): Update list of variables.Richard M. Stallman2004-12-031-8/+11
|
* (edebug-set-global-break-condition):Juri Linkov2004-11-281-15/+17
| | | | | | | | | | Use `read-expression-history'. Set initial contents only if `edebug-global-break-condition' is non-nil. Set histpos to 1 if initial contents is equal to the last history element. (edebug-set-conditional-breakpoint): Instead of temporarily prepending the current condition to the history, set initial contents to the current condition. Set histpos to 1 if initial contents is equal to the last history element.
* Comment changes.Richard M. Stallman2004-11-271-6/+1
|
* (cl-parse-loop-clause, labels): Use gensymStefan Monnier2004-11-271-2/+8
| | | | | rather than make-symbol for symbols which are used in a symbol-macrolet or equivalent.
* (byte-optimize-form-code-walker):Richard M. Stallman2004-11-251-1/+2
| | | | Use with-no-warnings around compiler-macroexpand.
* (custom-printers): Use `defvar' instead of `defconst'.Luc Teirlinck2004-11-211-1/+1
|
* (byte-compile-form): Move the calls to byte-compile-set-symbol-position,Richard M. Stallman2004-11-211-12/+15
| | | | to avoid having two for the same symbol occurrence.
* (map-keymap): Definition deleted.Richard M. Stallman2004-11-161-30/+0
| | | | (cl-map-keymap): Definition deleted.
* (find-function-regexp): Optimize `define-minor-mode'. Add `defun-cvs-mode'.Juri Linkov2004-11-161-3/+3
| | | | | | Add `deffoo'. Add `f' to [^cgv] to exclude `defface'. Remove invalid `\W' from [^cgv\W]. Doc fix. (find-function-search-for-symbol): Replace "\\>" with "\\_>".
* Use make-symbol rather than gensym.Stefan Monnier2004-11-161-225/+219
| | | | (loop, cl-parse-loop-clause, defsetf): Use backquote.
* (pair-with-newsyms): Use make-symbol.Stefan Monnier2004-11-161-3/+3
|
* (byte-optimize-inline-handler): Simplify.Stefan Monnier2004-11-141-13/+12
| | | | (byte-decompile-bytecode-1): Remove unused vars `tag' and `retcount'.
* (byte-compile-inline-expand): Understand theStefan Monnier2004-11-121-3/+4
| | | | new byte-compile-function-environment binding to t.
* Use push.Stefan Monnier2004-11-111-15/+13
| | | | | (byte-compile-file-form-defalias): Rename from byte-compile-defalias. (defalias): Remove the `byte-compile' property and add a `byte-hunk-handler'.
* (easy-menu-add-item): Use keymap-prompt. Simplify.Stefan Monnier2004-11-101-8/+3
|
* (easy-menu-define-key): Understand the case where the keymap is a symbol.Stefan Monnier2004-11-101-0/+1
|
* (easy-menu-intern): Revert to no-downcasing.Stefan Monnier2004-11-091-21/+2
| | | | (easy-menu-name-match): Revert correspondingly.
* (byte-compile-defalias):Richard M. Stallman2004-11-091-13/+19
| | | | | | | | | Turn off warnings for the new function even ifdefinition not constant. If the definition isn't a quoted symbol, record (FUNCTION . t). (byte-compile-function-environment): Now allow (FUNCTION . t) as elt. (byte-compile-callargs-warn): Handle (FUNCTION . t). (display-call-tree, byte-compile-arglist-warn): Handle t returned by byte-compile-fdefinition.
* (elp-results): Delete wasteful beginning-of-buffer.Richard M. Stallman2004-11-071-1/+0
|
* (easy-menu-get-map): Fix last change.Andreas Schwab2004-11-061-1/+1
|
* (easy-menu-get-map-look-for-name): Remove.Stefan Monnier2004-11-061-29/+44
| | | | | | | | (easy-menu-lookup-name): New fun to replace it. (easy-menu-get-map): Use it to obey menu item names (rather than just keys) when looking up `path'. (easy-menu-always-true-p): Rename from easy-menu-always-true. (easy-menu-convert-item-1): Adjust to new name.
* (edebug-next-token-class): Allow all symbol-constituent charactersJuri Linkov2004-11-051-2/+4
| | | | after dot, not only digits.
* (elp-instrument-function): Use called-interactively-p.Richard M. Stallman2004-11-021-1/+1
|
* (easy-menu-intern):Richard M. Stallman2004-11-021-1/+19
| | | | Don't downcase; rather, case-flip the first letter of each word.
* (define-minor-mode): Use called-interactively-p.Richard M. Stallman2004-11-021-1/+1
|
* (byte-compile-warning-types): Add interactive-only.Richard M. Stallman2004-11-021-3/+19
| | | | | | | (byte-compile-warnings): Add interactive-only as option. (byte-compile-interactive-only-functions): New variable. (byte-compile-form): Warn about calls to functions in byte-compile-interactive-only-functions.
* (update-file-autoloads): Don't use interactive-p; take new arg SAVE-AFTER.Richard M. Stallman2004-11-021-4/+7
|