summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
Commit message (Collapse)AuthorAgeFilesLines
* (define-minor-mode): Reference manual about customization, rather thanRichard M. Stallman2006-08-311-1/+2
| | | | M-x customize, in the doc string made for the defcustom.
* (trace-function-background): Doc fix.Richard M. Stallman2006-08-311-5/+8
|
* * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine): InsertChong Yidong2006-08-281-1/+2
| | | | commentary after first line summary.
* Miscellaneous tq-related fixes.Miles Bader2006-08-271-28/+32
| | | | | | | | | | | | | | * lisp/emacs-lisp/tq.el: Small grammar fix in comments. (tq-enqueue): Check for existence of queue rather than the head queue item's question, which was a no-op. (tq-filter, tq-process-buffer): Make sure the process buffer exists before making it the current buffer. * lispref/processes.texi (Transaction Queues): Remove stray quote character. Revision: emacs@sv.gnu.org/emacs--devo--0--patch-411 Creator: Michael Olson <mwolson@gnu.org>
* Remove * in defcustoms.Stefan Monnier2006-08-251-16/+18
| | | | (defgroup checkdoc): Move to beginning.
* * emacs-lisp/timer.el (timer-set-idle-time, run-with-idle-timer):Chong Yidong2006-08-241-6/+15
| | | | | | | | | | | | Accept internal time format for SECS arg. (timer-relative-time): Doc fix. * jit-lock.el: "Stealth fontification by requeuing timers" patch, adapted from Martin Rudalics. (jit-lock-stealth-repeat-timer, jit-lock-stealth-buffers): New vars. (jit-lock-mode): Create jit-lock-stealth-repeat-timer. (jit-lock-stealth-fontify): Reschedule as a idle timer instead of using sit-for.
* (run-with-idle-timer): Pass t to timer-activate-when-idle, so timerRichard M. Stallman2006-08-201-1/+3
| | | | can run before Emacs becomes non-idle again.
* (bindat-ip-to-string): Use `format-network-address' if possible.Thien-Thi Nguyen2006-08-111-3/+6
|
* Minor fix to last change.Chong Yidong2006-08-101-1/+2
|
* * emacs-lisp/edebug.el (edebug-recursive-edit): Don't save andChong Yidong2006-08-101-5/+4
| | | | | restore unread-command-events here. (edebug-display): Do it here, to detect sit-for interruptions.
* (find-function-search-for-symbol): Expand comment.Nick Roberts2006-07-231-1/+4
|
* (find-function-search-for-symbol): Handle "C-h f `".Nick Roberts2006-07-221-1/+3
|
* (make-autoload): Use new arg.Stefan Monnier2006-07-171-1/+4
|
* Update.Károly Lőrentey2006-07-141-1/+1
|
* Update.Károly Lőrentey2006-07-141-0/+1
|
* (make-autoload): Remove special handling ofStefan Monnier2006-07-131-11/+1
| | | | minor modes, redundant with the custom-autoload line above.
* (edebug-instrument-function): Err if find-function-noselect gives no position.Richard M. Stallman2006-07-121-0/+2
|
* (find-function-search-for-symbol):Richard M. Stallman2006-07-121-4/+9
| | | | | | | If can't find definition, return nil for position. (find-function-do-it): Handle new return value of find-definition-noselect. (find-definition-noselect, find-variable-noselect): Doc fix. (find-function-noselect): Doc fix.
* (authors-ignored-files): Ignore changesKim F. Storm2006-07-101-1/+1
| | | | to FOR-RELEASE and TODO.
* (authors-aliases): Update.Romain Francoise2006-07-101-0/+1
|
* * emacs-lisp/helper.el (Helper-help-scroller): Don't signal errorChong Yidong2006-07-091-1/+1
| | | | on non-char events.
* (define-minor-mode): Doc fix.Richard M. Stallman2006-07-091-2/+2
|
* (def-edebug-spec): Moved to subr.el.Richard M. Stallman2006-07-091-7/+0
|
* (define-minor-mode): Doc fix.Eli Zaretskii2006-07-081-1/+1
|
* (byte-compile-form): The `byte-compile'Stefan Monnier2006-07-071-1/+1
| | | | property may contain an anonymous function rather than a symbol.
* (emacs-lisp-mode-map): Use eval-buffer.Thien-Thi Nguyen2006-07-051-1/+1
|
* (authors-aliases): Add mode aliases.Kim F. Storm2006-06-041-2/+7
| | | | | (authors-fixed-entries): Fix spelling. (authors-canonical-file-name): Don't report error for wildcards.
* (ewoc--current-dll): Remove. Basically undo the change of 2006-05-26:Stefan Monnier2006-05-291-64/+59
| | | | | use extra arguments instead of dynamic scoping. (ewoc-locate): Remove unused var `footer'.
* (ewoc--insert-new-node): Use ewoc--refresh-node.Stefan Monnier2006-05-291-15/+10
|
* (no-update-autoloads): Declare.Stefan Monnier2006-05-291-87/+72
| | | | | | | (generate-file-autoloads): Obey it. Return whether autoloads were added at point or not. (update-file-autoloads): Use this new return value. Remove redundant test for the presence of an autoload cookie.
* (autoload-find-file): New fun. This one calls hack-local-variables.Stefan Monnier2006-05-291-33/+30
| | | | (generate-file-autoloads, update-file-autoloads): Use it.
* (bindat-idx, bindat-raw): Rename dynamic variablesKim F. Storm2006-05-281-54/+54
| | | | `pos' and `raw-data' for clarity, as eval forms may access these.
* (bindat--unpack-u8): Use aref also for strings.Kim F. Storm2006-05-281-3/+1
|
* Commentary and whitespace munging; nfc.Thien-Thi Nguyen2006-05-271-34/+1
|
* (ewoc): Add member `hf-pp' to this structure.Thien-Thi Nguyen2006-05-271-10/+25
| | | | | | | (ewoc--wrap): New func. (ewoc-create): Take additional arg NOSEP. If nil, wrap node and header/footer pretty-printers. Save header/footer pretty-printer. (ewoc-set-hf): Use ewoc's header/footer pretty-printer.
* (ewoc--node): Don't define constructorThien-Thi Nguyen2006-05-271-0/+1
| | | | `make-ewoc--node' for this structure.
* (ewoc--node-branch): Merge into unique caller.Thien-Thi Nguyen2006-05-271-8/+4
|
* (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.