summaryrefslogtreecommitdiff
path: root/lisp
Commit message (Collapse)AuthorAgeFilesLines
* (indent-region): Fix paren error in last change.Richard M. Stallman1993-08-061-1/+1
|
* (mouse-save-then-kill): Fix paren error in last change.Richard M. Stallman1993-08-061-1/+1
|
* (menu-bar-mode): Defvar removed.Roland McGrath1993-08-061-22/+27
| | | | (menu-bar-mode): Rewritten to parallel scroll-bar-mode.
* (scroll-bar-mode): If FLAG is non-nil, set it to its prefix-numeric-value.Roland McGrath1993-08-061-0/+1
|
* (Info-goto-emacs-command-node, Info-goto-emacs-key-command-node): Doc fix.Roland McGrath1993-08-061-3/+5
|
* (help-for-help): Mention C-k and C-f.Roland McGrath1993-08-061-9/+13
|
* (after-find-file): Improve warning message aboutRichard M. Stallman1993-08-061-1/+1
| | | | existing file that can't be read.
* (indent-region): Rename arg ARG to COLUMN.Richard M. Stallman1993-08-061-18/+21
| | | | | Don't add fill-prefix to empty line. Don't change whitespace in empty line.
* (help-admin-map): Fix menu item text.Richard M. Stallman1993-08-051-2/+2
|
* (font-lock-fontify-region): Handle comment-start-skip = nil.Richard M. Stallman1993-08-051-1/+4
|
* (rmail-resend): Delete any Sender field.Richard M. Stallman1993-08-051-0/+9
|
* (perl-mode): Add autoload cookie.Richard M. Stallman1993-08-051-0/+1
|
* (sendmail-program): Try /usr/sbin/sendmail.el also.Richard M. Stallman1993-08-041-5/+5
|
* (diary-display-hook): Change default and fix doc string.Richard M. Stallman1993-08-041-6/+10
| | | | | | (diary-hook): New user variable. (diary-date-forms, calendar-date-display-form): Don't autoload them so the European/American style is decided at load time.
* (list-diary-entries): Split diary-display-hook into twoRichard M. Stallman1993-08-041-8/+18
| | | | | | pieces, diary-display-hook and diary-hook. If diary-display-hook is nil, use simple display. (include-other-diary-files): Set those hooks properly for other files.
* entered into RCSRichard M. Stallman1993-08-045-73/+70
|
* (mouse-save-then-kill): Don't discard all the normalRichard M. Stallman1993-08-041-3/+14
| | | | undo info; just replace the deletion entry.
* (print-region-1): Make END a marker so untabify relocates it.Richard M. Stallman1993-08-041-0/+5
|
* (compilation-minor-mode): Make variable buffer-local.Roland McGrath1993-08-031-0/+2
| | | | (compilation-minor-mode): Autoload this function.
* (man): Define as alias.Richard M. Stallman1993-08-031-0/+4
|
* (window-setup-hook): Add hook function.Richard M. Stallman1993-08-031-1/+8
|
* (comint-dynamic-list-completions): Expand PATHDIR in call toRoland McGrath1993-08-031-1/+3
| | | | file-name-completion.
* Make boldness and italicness affect subsequently created frames.Richard M. Stallman1993-08-031-124/+196
| | | | | | | | | | (make-face-bold, make-face-italic, make-face-bold-italic) (make-face-unbold, make-face-unitalic): Update global-face-data. Ignore a list found in the font slot. (make-face-bold-internal, make-face-italic-internal): (make-face-bold-italic-internal): New subroutines. (x-create-frame-with-faces): If global-face-data's font slot indicates bold and/or italic, make it so.
* (shrink-window-if-larger-than-buffer): Pass WINDOW toRoland McGrath1993-08-031-2/+2
| | | | pos-visible-in-window-p.
* (cmpl-read-time-eval): Make it no-op.Richard M. Stallman1993-08-031-6/+7
| | | | | (cmpl-hours-since-origin): Use truncate to make an integer. (completion-search-reset): Use completion-prefix-min-length.
* (completion-version): New variable.Richard M. Stallman1993-08-031-58/+26
| | | | (save-completions-to-file): Use completion-version.
* (telnet): If we already have a telnet to HOST, just switch buffers.Richard M. Stallman1993-08-031-13/+16
|
* (other-frame): Skip iconified and invisible frames.Roland McGrath1993-08-031-6/+9
|
* (occur-mode-goto-occurrence): Give meaningful errorRichard M. Stallman1993-08-031-0/+2
| | | | message if there's nowhere useful to go.
* (comint-dynamic-complete): If called interactively twice in a row, give theRoland McGrath1993-08-021-20/+24
| | | | completion list.
* (comint-dynamic-complete): Expand PATHDIR in call to file-name-completion.Roland McGrath1993-08-021-2/+9
|
* (comint-dynamic-completion): Say "Sole completion", not "UniqueRoland McGrath1993-08-021-1/+1
| | | | completion".
* (other-frame): New function, analogous to other-window.Roland McGrath1993-08-021-0/+17
| | | | (ctl-x-5-map): Bind C-x 5 o to other-frame.
* Initial revisionRichard M. Stallman1993-08-025-0/+3569
|
* (indent-c-exp): Don't document ENDPOS.Richard M. Stallman1993-08-021-7/+32
| | | | | (c-indent-region): Rewrite to use indent-c-exp on one sexp at a time, then use c-indent-line on the next line, etc.
* (mail-yank-hooks): Initialize to nil.Richard M. Stallman1993-08-021-2/+4
| | | | | (mail-yank-original): If mail-yank-hooks is nil, call mail-indent-citation.
* (remove-hook): Doc string added.Richard M. Stallman1993-08-021-1/+9
| | | | Change a single function into a list.
* (add-hook): Change a single function into a list.Richard M. Stallman1993-08-021-6/+20
|
* (fill-region-as-paragraph): When we take one wordRichard M. Stallman1993-08-021-7/+26
| | | | | | after the fill column, don't stop at period with just one space. When checking whether at beginning of line, if no fill prefix, ignore intervening whitespace.
* (byte-recompile-directory): At end of compiling a file,Richard M. Stallman1993-08-021-0/+2
| | | | put back the "Checking DIR..." message.
* (Info-fontify-node): New function.Richard M. Stallman1993-08-021-12/+169
| | | | | | | | | | | | | | | | | | | | | | | | (Info-fontify): New variable. (Info-mode): Initialize Info-related faces. (Info-select-node): Fontify the node if necessary. (Info-goto-node): Provide completion for node names. (Info-read-node-name, Info-build-node-completions): New functions. (Info-current-file-completions): New variable. (Info-find-node): Clear completions cache. (Info-next-reference, Info-prev-reference): New commands. (Info-mode-map): Bind these to TAB and M-TAB. (Info-next-preorder): Special case if sitting on "*Note" reference. (Info-standalone): New variable. (Info-exit): Exit Emacs if in standalone mode. (info-standalone): New function. (Info-summary): Added `bury-buffer' call. (Info-no-error): Renamed from `no-error'. (Info-suffix-list): Put ".info" before "" to deal with directory named "foo" next to file "foo.info".
* * blackbox.el (blackbox-mode-map): Now that we haveJim Blandy1993-08-011-12/+5
| | | | | | | terminal-independent function-key facilities, we ought to use them. Remove hack which looks for all bindings for the simple motion keys and locally binds them to blackbox keys; add bindings for the [up], [down], [left], and [right] keys.
* (etags-tags-completion-table): Fixed regexp for today's format.Roland McGrath1993-08-011-8/+9
| | | | (etags-snarf-tag): Skip explicit tag name if present.
* (pick-random): Remove.Paul Eggert1993-08-011-7/+2
| | | | All callers changed to use `random' instead.
* (dissociated-press): Use `(random N)' instead of while loop.Paul Eggert1993-08-011-3/+1
|
* (dun-endgame-question, tcom, tloc):Paul Eggert1993-08-011-3/+3
| | | | Use (random N) instead of combination of %, abs and random.
* (random-number): Remove.Paul Eggert1993-08-011-6/+1
| | | | All callers changed to use `random' instead.
* (life-insert-random-pattern): Simplify (% (abs (random)) N)Paul Eggert1993-08-011-1/+1
| | | | to (random N).
* (mpuz-random): Remove.Paul Eggert1993-08-011-8/+3
| | | | All callers changed to use `random' instead.
* (emerge-default-[AB]): Use (zerop (% A B)) instead ofPaul Eggert1993-08-011-2/+2
| | | | (= (* (/ A B) B) A).