summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* (main): Call syms_of_xfaces.Richard M. Stallman1993-03-281-0/+1
|
* *** empty log message ***Jim Blandy1993-03-271-131/+205
|
* (struct buffer): Field `fieldlist' deleted.Richard M. Stallman1993-03-271-38/+40
| | | | | | | (OVERLAY_START, OVERLAY_END, OVERLAY_VALID): New macros. (OVERLAY_POSITION): Likewise. (searchbuf): Decl deleted--doesn't belong here. Delete include of regex.h for VMS.
* (init_buffer_once, reset_buffer):Richard M. Stallman1993-03-271-47/+447
| | | | | | | | | | Delete last vestige of fieldlist slot. (Fregion_fields): Finally deleted. (overlays_at, recenter_overlay_lists): New functions. (Fmake_overlay, Fdelete_overlay, Foverlay_get, Foverlay_put): Likewise. (Fmove_overlay, Foverlays_at, Fnext_overlay_change): Likewise. (Foverlay_lists, Foverlay_recenter): Likewise.
* (try-face-font, find-face, get-face): New aliases.Richard M. Stallman1993-03-271-0/+4
|
* moby rlogin-filter fixesNoah Friedman1993-03-271-18/+29
|
* (set-case-syntax-delims, set-case-syntax-pair, set-case-syntax):Richard M. Stallman1993-03-271-26/+14
| | | | | Do not set the standard case table. Reintroduce arg (now named TABLE) which gives a downcase string to set.
* Add autoloads.Richard M. Stallman1993-03-271-14/+33
| | | | | | | (set-case-syntax-delims, set-case-syntax-pair, set-case-syntax): Delete arg STRING--always set the standard case table. Be more thorough about doing that, and arrange to recompute the equivalence and canonicalize parts of the table.
* (Fchar_equal): Don't ignore high bits of character.Richard M. Stallman1993-03-271-1/+2
|
* (add-hook) Added optional arg to cause hook to be appended rather thanEric S. Raymond1993-03-271-6/+10
| | | | | | | | | prepended to the hook list. This obviates the 23 different hook-bashing packages in LCD. (get-word) Added. Lots of help and default-generator functions in LCD use it, and it's remarkably difficult to get right, especially given the new syntax primitives.
* (printify-buffer) Added, debugged from Roland McGrath's printify-buffer codeEric S. Raymond1993-03-271-0/+16
| | | | in LCD.
* (cookie) Enhanced it to handle both LINS files and UNIX fortune files.Eric S. Raymond1993-03-271-11/+16
|
* (fill-rectangle) Added. Inspired by Lynn Slater's insert-box package in LCD,Eric S. Raymond1993-03-271-0/+24
| | | | but the interface and implementation are different.
* (enable-and-notify) Added. Inspired by Roland McGrath's LCD packageEric S. Raymond1993-03-271-0/+9
| | | | enable-me.
* (Buffer-menu-toggle-read-only) Added, per Rob Austein's suggestionEric S. Raymond1993-03-271-2/+21
| | | | in the LCD package bm-toggle.el.
* (undo-with-space) Added. C-x C-u now bound to this rather than undo.Eric S. Raymond1993-03-271-1/+18
| | | | | This change was inspired by the LCD package undo-with-space by Thomas Narten, but my code is simpler and uses the 19 event features.
* (fill-paragraph, justify-current-line) Now uses the skip-syntax-Eric S. Raymond1993-03-271-25/+39
| | | | | | | | forward and backward characters and char-syntax to be smart about filling syntaxes other than text. This change was inspired by Richard Caley's fill-para package from LCD, but the implementation is original.
* (local-write-file-hooks): New variable.Richard M. Stallman1993-03-261-2/+12
| | | | | (set-visited-file-name): Kill local-write-file-hooks as local var. (basic-save-buffer): Use local-write-file-hooks.
* (psychoanalyze-pinhead) Needed a prefrontal lobotomy. I gave it one.Eric S. Raymond1993-03-261-3/+1
|
* Added Commentary.Eric S. Raymond1993-03-261-0/+2
|
* * xselect.c (SELECTION_QUANTUM): Don't use XMaxRequestSize on R3;Jim Blandy1993-03-251-2/+5
| | | | access the display structure directly.
* (searchbuf): Declare here.Richard M. Stallman1993-03-251-0/+3
|
* (mark_object): Mark face_alist of a frame.Richard M. Stallman1993-03-251-0/+1
|
* (Fy_or_n_p): Ensure cursor_in_echo_area = 0 when quit.Richard M. Stallman1993-03-251-0/+4
|
* * make-dist: Distribute lisp/term/ChangeLog.Jim Blandy1993-03-251-1/+1
|
* * x-win.el (x-defined-colors): Use x-color-defined-p instead ofJim Blandy1993-03-251-3/+4
| | | | | x-defined-color. (x-handle-geometry): Use x-parse-geometry instead of x-geometry.
* * x-win.el: Update copyright to 1993.Jim Blandy1993-03-251-6/+11
| | | | | | | | | | | * x-win.el: Bind [M-next] to advertised-scroll-other-window instead of scroll-other-window, and then make advertised-scroll-other-window an alias for scroll-other-window. * term/x-win.el: Require select.el. (x-select-text): Update call to x-set-cut-buffer. Put `PRIMARY' and `CLIPBOARD' in upper case. (x-cut-buffer-or-selection-value): Put `PRIMARY' in upper case.
* * dispnew.c (getenv): Add extern declaration.Jim Blandy1993-03-251-0/+2
|
* Fix typo.Jim Blandy1993-03-251-0/+1
|
* Fix typo in source for `configure.tmp.$$.c'.Jim Blandy1993-03-251-1/+1
|
* * Makefile.in (C_SWITCH_SYSTEM): New variable.Jim Blandy1993-03-251-1/+2
| | | | | (CFLAGS): Include C_SWITCH_SYSTEM in the flags to pass to the compiler.
* Arrange for C compilation throughout the tree to getJim Blandy1993-03-252-6/+13
| | | | | | | | C_SWITCH_SYSTEM from the configuration files. * configure: Extract C_SWITCH_SYSTEM from the machine and system-dependent files, and save it in the top-level Makefile. * Makefile.in (C_SWITCH_SYSTEM): New flag for configure to edit. (lib-src/Makefile): Edit C_SWITCH_SYSTEM into lib-src/Makefile.
* (describe-function): Add blank line above doc string.Richard M. Stallman1993-03-251-1/+2
|
* * dispnew.c (init_display): Get display name from environmentJim Blandy1993-03-251-1/+9
| | | | properly on VMS as well as Unix.
* * keymap.c (Fkeymapp): Doc fix.Jim Blandy1993-03-251-1/+1
|
* * process.c [VMS] (DCL_PROMPT): Remove hack.Jim Blandy1993-03-251-6/+8
| | | | | | (WIFSTOPPED, WIFSIGNALED, WIFEXITED, XRETCODE, WSTOPSIG, WCOREDUMP, WTERMSIG): New dummy definitions. (deactivate_process): Add missing semicolon.
* Add provide call.Richard M. Stallman1993-03-251-0/+2
|
* * xfns.c [VMS]: Get the gray_bits from [.bitmaps]gray.xbm.Jim Blandy1993-03-251-0/+4
|
* * xterm.h (x_focus_frame): Add extern keyword to declaration.Jim Blandy1993-03-251-1/+1
|
* * xterm.c [VMS]: Don't #include <sys/termio.h> and <string.h>.Jim Blandy1993-03-251-0/+2
|
* (lm-last-modified-date) Fixed return bug.Eric S. Raymond1993-03-251-40/+50
| | | | (lm-uthor, lm-maintainer) These now return cons pairs, not strings.
* Brent Benson's patch to support `cd -'.Eric S. Raymond1993-03-251-11/+23
|
* * make-dist: Include the VMS support files in oldXMenu in theJim Blandy1993-03-251-1/+2
| | | | distribution.
* (mh-unshar) Added.Eric S. Raymond1993-03-251-0/+47
|
* Added a (provide 'emacsbug); lisp-mnt.el needs this.Eric S. Raymond1993-03-251-0/+2
|
* * calendar.el (calendar-standard-time-zone-name,Jim Blandy1993-03-251-11/+28
| | | | | | | | calendar-daylight-time-zone-name): Initialize these at load-time, as well as calendar-time-zone. * calendar.el (calendar-time-zone): Fix code which initializes this.
* * config.h.in (HAVE_XFREE386): New flag, set by configure script.Jim Blandy1993-03-251-0/+9
| | | | | | | If it's set, #define LIBX11_SYSTEM and HAVE_RANDOM as appropriate for XFree386. * sysdep.c (random, srandom): Don't define these if HAVE_RANDOM is #defined.
* * configure: Doc fix.Jim Blandy1993-03-251-17/+20
| | | | | | | | | | | * configure: Fix corrupted config_h_opts. * configure: Properly report option names in error messages. * configure: Properly recognize --x-includes and --x-libraries options. * configure: Fix syntax errors in code handling XFree386.
* Default to clipper-intergraph if system is clix.Richard M. Stallman1993-03-241-0/+3
|
* (push_key_description): Ignore bits above meta_modifier.Richard M. Stallman1993-03-241-0/+3
|