summaryrefslogtreecommitdiff
path: root/lisp
Commit message (Collapse)AuthorAgeFilesLines
* (compilation-parse-errors): Save (match-beginning 0) in a variable, so theRoland McGrath1992-10-011-21/+26
| | | | | | | looking-at call doesn't clobber its value when we want to use it to back up before the error we discard. Make sure compilation-error-list is at least two elts long before checking its first two elts for being in the same file.
* (kill-word): Don't change point before calling kill-region.Richard M. Stallman1992-09-301-1/+2
| | | | (delete-indentation): Don't go beyond eob, comparing with fill-prefix.
* * gud.el (gud-last-frame): Added defvar for this.Jim Blandy1992-09-301-0/+5
|
* * gud.el (gud-filter-insert): Previous changes misunderstoodJim Blandy1992-09-301-16/+19
| | | | | the arrangement of unwind-protect and the save-excursion; restored that structure.
* (compilation-parse-errors): After we get enough errors to stop early, tossRoland McGrath1992-09-301-2/+11
| | | | | the last one (which is for a different file), so we don't lose the same way on the next run.
* (compilation-parse-errors): When we reach FIND-AT-LEAST errors, keep goingRoland McGrath1992-09-291-1/+8
| | | | until we have seen all the consecutive errors in the same file.
* (mail-send-and-exit): Do other-buffer before bury-buffer.Richard M. Stallman1992-09-291-8/+9
|
* (mail-unsent-separator): Add another alternative.Richard M. Stallman1992-09-291-1/+2
|
* *** empty log message ***Jim Blandy1992-09-291-6/+18
|
* *** empty log message ***Jim Blandy1992-09-291-0/+1
|
* *** empty log message ***Jim Blandy1992-09-291-4/+3
|
* *** empty log message ***Jim Blandy1992-09-291-1/+1
|
* * gud.el: When we send a command to the debugger via gud-call,Jim Blandy1992-09-291-5/+60
| | | | | | | | | | | | it's annoying to see the command and the new prompt in the debugger interaction buffer; nuke the command and the old prompt. (gud-delete-prompt-marker): New variable, with extensive documentation. (gud-mode): Make gud-delete-prompt-marker buffer-local, and initialize it. (gud-filter-insert): If gud-delete-prompt-marker is set, delete the prompt, and clear gud-delete-prompt-marker. (gud-call): Arrange for the last prompt printed to get deleted, by setting gud-delete-prompt-char.
* * gud.el (gud-def): Doc fix.Jim Blandy1992-09-291-50/+50
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (gud-gdb-marker-filter, gud-sdb-marker-filter, gud-dbx-marker-filter): Rename the argument `s' or `str' to `string', and change all uses; these definitions were referring to `string', which is unbound in the lexical context, but which happens to end up being bound to the right thing by the caller, gud-filter. (sdb): Set comint-prompt-regexp, not comint-prompt-pattern; the latter doesn't exist. (gud-dbx-debugger-setup): Use the argument `f', not the variable `file', which happens to be bound in the caller. (gud-filter-insert): The variable `start' is never used. The variable `moving' is unnecessary. The variable `old-buffer' and the unwind-protect form are unneeded, since save-excursion can do their work. The binding of output-after-point should be done after switching to the process's buffer, not in whatever random buffer happens to be current when the process filter is called. There's no need to set the process mark if we've just inserted at its location using insert-before-markers. (gud-read-address): Don't bother setting the variable `result'; it is never used. * gud.el (gud-mode-map): Bind gud-refresh to C-c C-l, not C-c l; the latter is reserved for the user's purposes. * gud.el (gdb, sdb, dbx): Use C-c C-r ("resume") for continuing, instead of C-c C-c. C-c C-c should be comint-interrupt-subjob; it's important to have that available, and the C-c C-c binding is consistent with all the other comint-derived modes.
* (file-relative-name-1): New function split out.Richard M. Stallman1992-09-281-11/+11
| | | | (file-relative-name): Use it.
* Use frame-width instead of screen-width.Richard M. Stallman1992-09-281-61/+34
|
* (ws-mark-word): Use forward-word, with an arg, instead of backward-word.Richard M. Stallman1992-09-281-114/+114
| | | | | (wordstar-mode): Move after definition of keymap. (ws-move-block): Just two args for kill-region.
* (vc-rename-file): Use OLD, not FILE which is unbound.Richard M. Stallman1992-09-281-3/+5
|
* (ange-ftp-kill-ftp-process): Delete spurious ".Richard M. Stallman1992-09-281-2/+2
|
* (timer-process-sentinel): Don't set timer-scratch.Richard M. Stallman1992-09-281-1/+2
|
* Use (function ...) around lambdas, so it works in v18.Roland McGrath1992-09-281-7/+9
|
* Dox FixChristopher Zaborsky1992-09-271-4/+4
|
* Doc fix.Christopher Zaborsky1992-09-273-13/+16
|
* (vc-update-change-log): Use file-relative-name.Roland McGrath1992-09-271-6/+2
|
* (file-relative-name): Rewritten so unrelativizable file names win.Roland McGrath1992-09-271-3/+11
|
* (file-relative-name): Don't lose when DIRECTORY is nil.Roland McGrath1992-09-271-1/+2
|
* (file-relative-name): New function.Roland McGrath1992-09-271-0/+9
|
* (vc-checkin-hook): New user hook variable.Roland McGrath1992-09-271-18/+29
| | | | | | | | | (vc-log-after-operation-hook): New internal defvar. (vc-checkin): Set vc-log-after-operation-hook to 'vc-checkin-hook. (vc-finish-logentry): (run-hooks vc-log-after-operation-hook) at end. (vc-update-change-log): When doing all visited files, remove directory names from file names that are in default-directory.
* (vc-update-change-log): Use shell-command, not shell-command-on-region.Roland McGrath1992-09-271-17/+27
| | | | | Take optional args to pass to script. Add fancy interactive spec: C-u for current file only; M-0 for all visited.
* New version from sk. Further hacked:Roland McGrath1992-09-271-18/+56
| | | | (find-grep-dired): Use ! -type d, not -type f.
* (vc-toggle-read-only): Doc fix.Roland McGrath1992-09-271-2/+3
| | | | (vc-mode-line): Add interactive spec.
* Doc fix.Richard M. Stallman1992-09-261-1/+1
|
* Delete obsolete comments.Richard M. Stallman1992-09-261-29/+1
|
* (gomoku): Make it autoload.Richard M. Stallman1992-09-261-13/+2
|
* (spook): Make it autoload.Richard M. Stallman1992-09-261-0/+1
|
* (setenv): Make it autoload.Richard M. Stallman1992-09-261-0/+1
|
* Fix setup of mpuz-read-map not to depend on keymap format.Richard M. Stallman1992-09-261-9/+13
| | | | (mpuz): Renamed from mult-puzzle. Make it autoload.
* Doc fix.Richard M. Stallman1992-09-261-1/+1
|
* (diff): Don't print echo area message.Richard M. Stallman1992-09-261-5/+6
| | | | | (diff-parse-differences): Always add `done' to message, at end. New local num-loci-found counts the loci.
* (mouse-split-window-vertically): Use @.Richard M. Stallman1992-09-261-26/+56
| | | | | | | | | | | | (mouse-split-window-horizontally): New command. Use S-mouse-2 for them. (mouse-delete-window): Put on mode-line mouse-3. (mouse-save-then-kill): New command, on mouse-3. (mouse-delete-other-windows): Use @. Now on mode-line mouse-1. (mouse-scroll-down, mouse-scroll-up): Use e, get line from event. (mouse-scroll-move-cursor): Likewise. (mouse-scroll-left, mouse-scroll-right): Likewise for column. (mouse-scroll-move-cursor-horizontally): Likewise.
* (after-find-file): New arg NOAUTO.Richard M. Stallman1992-09-241-5/+6
| | | | (revert-buffer, recover-file): Pass t for that arg.
* (calculate-c-indent): When testing for function-start line,Richard M. Stallman1992-09-231-1/+4
| | | | always match the first paren if have more than one.
* Initial revisionRichard M. Stallman1992-09-221-0/+113
|
* (texinfo-mode): Capitalize the mode name string.Richard M. Stallman1992-09-211-1/+1
|
* Doc fixes. Make tq-create autoload.Richard M. Stallman1992-09-211-7/+12
|
* (mail-undo-backslash-quoting): Renamed from undo-...Richard M. Stallman1992-09-211-16/+16
| | | | | (mail-safe-move-sexp): Renamed from safe-... (mail-variant-method): Renamed from variant-method.
* entered into RCSEric S. Raymond1992-09-211-5/+5
|
* entered into RCSRichard M. Stallman1992-09-212-65/+40
|
* entered into RCSRichard M. Stallman1992-09-212-25/+5
|
* entered into RCSRichard M. Stallman1992-09-201-0/+4
|