aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* (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.
* Don't mention dir `s/' in #include.Richard M. Stallman1993-08-031-2/+2
|
* (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
|
* (vfork): Move this outside the USG conditional.Richard M. Stallman1993-08-031-13/+13
|
* (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.
* (Fprevious_frame): New function, for parity with Fnext_frame.Roland McGrath1993-08-021-0/+23
| | | | (syms_of_frame): Add defsubr for Sprevious_frame.
* * xdisp.c (display_menu_bar): Redisplay all lines occupied by theJim Blandy1993-08-021-0/+5
| | | | menu bar, not just the first.
* *** empty log message ***Roland McGrath1993-08-021-0/+8
|
* Initial revisionRichard M. Stallman1993-08-025-0/+3569
|
* (save_excursion_restore): Never make the buffer visible.Richard M. Stallman1993-08-021-0/+5
|
* (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.
* (read_key_sequence): Use XFASTINT to convert valueRichard M. Stallman1993-08-021-2/+2
| | | | of Flength to an int.
* (Fmove_overlay): Avoid initializer for Lisp_Object vars.Richard M. Stallman1993-08-021-4/+6
| | | | (verify_overlay_modification): Declare ostart, oend as Lisp_Object.
* (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.
* (Fset_frame_position): Doc fix.Richard M. Stallman1993-08-021-1/+1
|
* (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".
* *** empty log message ***Roland McGrath1993-08-011-0/+9
|
* * 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.
* (put_entries): For NODE->rewritten, put pattern before \177 and name after,Roland McGrath1993-08-011-2/+4
| | | | not vice versa.
* (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).
* *** empty log message ***Roland McGrath1993-08-011-3/+5
|
* (last_mouse_button): Renamed from button_up_button.Richard M. Stallman1993-08-011-85/+99
| | | | | | | | | (last_mouse_x, last_mouse_y): Likewise. (button_down_time): Replaces button_up_time. (make_lispy_event): Set button_down_time. Detect and report double-down and double-drag events. (apply_modifiers_uncached): Put `double' or `triple' first. (read_key_sequence): Convert unbound double-drag/down to drag/down.
* Installed the version from the Texinfo package.Richard M. Stallman1993-08-011-674/+1854
|
* (Finsert_file_contents): Don't call prepare_to_modify_bufferRichard M. Stallman1993-08-011-1/+1
| | | | if inserting zero characters.
* (dired-sort-mode): Variable deleted.Richard M. Stallman1993-08-011-17/+4
| | | | | Don't display it in mode line. (dired-sort-set-modeline): Set mode-name instead.
* Doc fix.Richard M. Stallman1993-08-011-1/+1
|
* (main): Generate a SIGIO as soon as we've initialized.Richard M. Stallman1993-08-011-1/+5
|
* (visit-tags-table-buffer): New local namedRichard M. Stallman1993-08-011-153/+161
| | | | | visit-tags-table-buffer-cont copies cont. (tags-table-including): Set that, instead of cont.
* Version 2.7 from stig.Richard M. Stallman1993-08-011-421/+268
|
* (etags-goto-tag-location): Handle selective display.Richard M. Stallman1993-08-011-1/+3
|
* (indent-c-exp): Don't move an { from column 0.Richard M. Stallman1993-08-011-1/+3
|
* Fix doc strings and error message syntax.Richard M. Stallman1993-07-311-46/+91
| | | | | | | Add menu bar items. (tar-subfile-mode): Set a local-write-file-hook rather than using key bindings. (tar-subfile-save-buffer): Return t.
* (try_window): Handle invisible newline at end of buffer.Richard M. Stallman1993-07-311-2/+49
| | | | (display_text_line): Don't display invisible text.