summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
Commit message (Collapse)AuthorAgeFilesLines
...
* (ewoc-delete): Compute last node once before looping.Thien-Thi Nguyen2006-05-271-3/+3
|
* (ewoc--create): No longer takeThien-Thi Nguyen2006-05-271-5/+4
| | | | HEADER and FOOTER args. Update unique caller.
* (ewoc--current-dll): New var.Thien-Thi Nguyen2006-05-261-55/+61
| | | | | | | | (ewoc--node-next, ewoc--node-prev, ewoc--node-nth): Don't take DLL arg. Instead, use `ewoc--current-dll'. Update all callers. (ewoc--set-buffer-bind-dll-let*): Bind `ewoc--current-dll', not `dll'. (ewoc--adjust): Use `ewoc--current-dll'. (ewoc-next, ewoc-prev, ewoc-nth): Bind `ewoc--current-dll'.
* (bindat-unpack, bindat-pack):Thien-Thi Nguyen2006-05-251-6/+8
| | | | Signal error if RAW-DATA is a multibyte string.
* (ad-enable-advice, ad-activate, ad-disable-advice): Add autoloads.Richard M. Stallman2006-05-251-0/+3
|
* (bindat-pack): Doc fix.Thien-Thi Nguyen2006-05-231-1/+1
|
* Refill; nfc.Thien-Thi Nguyen2006-05-231-6/+11
|
* (ewoc-delete): New function.Thien-Thi Nguyen2006-05-231-19/+26
| | | | (ewoc-filter): Use `ewoc-delete'.
* (ewoc-set-data): New func.Thien-Thi Nguyen2006-05-221-0/+5
|
* (ewoc-create): Add autoload cookie.Thien-Thi Nguyen2006-05-211-1/+1
|
* (ewoc--adjust): New func.Thien-Thi Nguyen2006-05-181-23/+36
| | | | | | | | | | (ewoc--insert-new-node): Don't insert trailing newline. Instead, adjust succesor nodes' start markers. (ewoc--refresh-node): Delete all text from current node's start marker to the next one's; adjust successor nodes' start markers. (ewoc--create): Doc fixes. (ewoc--refresh): Don't insert newline. (ewoc--set-hf): Use `ewoc--set-buffer-bind-dll-let*'.
* (ewoc-map, ewoc-invalidate): Compute PP before looping.Thien-Thi Nguyen2006-05-171-3/+5
|
* (ewoc-data): Add docstring.Thien-Thi Nguyen2006-05-171-2/+5
| | | | (ewoc-nth): Doc fix.
* (byte-compile-warnings-safe-p): NewReiner Steib2006-05-161-1/+14
| | | | | function. (byte-compile-warnings): Fix safe-local-variable property.
* (ewoc--node-enter-before, ewoc--create-node): Delete funcs.Thien-Thi Nguyen2006-05-121-33/+23
| | | | | (ewoc--insert-new-node): New func. Update callers of deleted funcs to use it, instead.
* (ewoc-refresh): Compute PP once before looping.Thien-Thi Nguyen2006-05-121-3/+3
|
* Move `safe-local-variable' declarations to the respective files.Reiner Steib2006-05-111-0/+4
|
* (ewoc--refresh-node): No longer save-excursion.Thien-Thi Nguyen2006-05-111-16/+18
| | | | Update all callers to do it there, instead.
* (ewoc--dll-create, ewoc--node-delete)Thien-Thi Nguyen2006-05-101-53/+28
| | | | | (ewoc--node-enter-first, ewoc--node-enter-last) (ewoc--delete-node-internal): Merge funcs into unique callers.
* * emacs-lisp/crm.el (completing-read-multiple): Properly handleChong Yidong2006-05-101-19/+22
| | | | return value of read-from-minibuffer for empty input.
* (define-minor-mode): Only preserve messages output during execution of the body.Stefan Monnier2006-05-081-2/+6
|
* (ewoc--set-buffer-bind-dll-let*): Use `with-current-buffer'.Thien-Thi Nguyen2006-05-081-8/+4
|
* (syntax-ppss): Flush the cache before rather than after a buffer modification.Stefan Monnier2006-05-071-9/+8
|
* (ewoc-create, ewoc-set-hf): Use `insert'Thien-Thi Nguyen2006-05-051-4/+4
| | | | directly instead of a lambda expression that calls it.
* (reb-update-overlays): Cycle through provided faces once they all have beenEli Zaretskii2006-05-051-13/+22
| | | | used.
* (display-warning, lwarn): Doc fixes.Richard M. Stallman2006-05-011-1/+2
|
* Revision: emacs@sv.gnu.org/emacs--devo--0--patch-220Miles Bader2006-04-161-27/+69
| | | | | | | | | | | | | | | | | | | Creator: Michael Olson <mwolson@gnu.org> Improve tq.el. * lispref/processes.texi (Transaction Queues): Mention the new optional `delay-question' argument for `tq-enqueue'. * lisp/emacs-lisp/tq.el: Improve comments. (tq-queue-head-question): New accessor function. (tq-queue-head-regexp, tq-queue-head-closure, tq-queue-head-fn): Update for modified queue structure. (tq-queue-add): Accept `question' argument. (tq-queue-pop): If a question is pending, send it. (tq-enqueue): Accept new optional argument `delay-question'. If this is non-nil, and at least one other question is pending a response, queue the question rather than sending it immediately.
* (find-function-search-for-symbol): Add comments.Stefan Monnier2006-04-131-0/+8
|
* (edebug-basic-spec): New function for vetting file-local form specs.Eli Zaretskii2006-04-131-0/+14
|
* (byte-compile-file): Bind enable-local-variables to :safe,Richard M. Stallman2006-04-111-1/+5
| | | | and make normal-mode obey it.
* (find-function-regexp): Allow dashes in defun name, in similar fashionBill Wohler2006-04-101-1/+1
| | | | to find-variable-regexp.
* (find-function-search-for-symbol): Fix regexp so the defined var/fun doesn'tStefan Monnier2006-04-101-1/+1
| | | | need to be quoted.
* (byte-compile-form): Only call cl-byte-compile-compiler-macro if it exists.Stefan Monnier2006-04-081-3/+9
|
* (eval-print-last-sexp, eval-last-sexp, eval-defun): Doc fixes.Richard M. Stallman2006-04-071-1/+10
|
* Add a few aliases. Ignore changes to AUTHORS file.Kim F. Storm2006-03-281-2/+4
|
* (debug-help-follow): Revert last change.Luc Teirlinck2006-03-201-4/+3
|
* (debug-help-follow): Adapt comment to change in help-mode.el.Luc Teirlinck2006-03-201-3/+4
|
* (rx-check-any, rx-check-not): Quote "]"s in regexps when they have noEli Zaretskii2006-03-031-3/+3
| | | | special meaning.
* (edebug-display): Use `edebug-sit-for-seconds' value instead of a literalEli Zaretskii2006-03-031-2/+3
| | | | constant (1) on more pauses.
* (find-library-suffixes): Use `get-load-suffixes' instead of `load-suffixes'.Luc Teirlinck2006-02-271-2/+2
| | | | (find-library-name): Use `load-file-rep-suffixes' instead of '("").
* (update-directory-autoloads): Use `get-load-suffixes' instead ofLuc Teirlinck2006-02-271-1/+1
| | | | `load-suffixes'.
* (unsafep): Don't treat &rest or &optional as variables at all.Richard M. Stallman2006-02-211-9/+8
| | | | (unsafep-variable): Rename arg; doc fix.
* Update years in copyright notice; nfc.Thien-Thi Nguyen2006-02-0662-63/+80
|
* (find-definition-noselect): Minor doc fix.Luc Teirlinck2006-02-051-1/+1
|
* Minor twiddles in comments and docstrings.Stefan Monnier2006-02-011-6/+9
|
* (toplevel): Remove definition of `cl-assertion-failed' condition --John Paul Wallington2006-01-301-3/+0
| | | | it's defined in subr.el instead.
* (find-definition-noselect, find-variable-noselect): Search variables inEli Zaretskii2006-01-211-22/+27
| | | | | | | C source code too. (find-function-C-source, find-function-noselect, find-function) (find-function-other-frame, find-variable-noselect, find-variable) (find-variable-other-frame, find-variable-at-point): Fix docstrings.
* (batch-byte-recompile-directory): Doc fix.Eli Zaretskii2006-01-131-1/+5
|
* (find-definition-noselect): Fix typo in a doc string: "functoin" => "function".Eli Zaretskii2006-01-061-1/+1
|
* (byte-compile-file-form-defalias):Stefan Monnier2006-01-031-2/+10
| | | | Optimize the body of a defalias like any other code.