Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | (read_socket_hook): Fix prototype. | Kim F. Storm | 2004-02-27 | 1 | -1/+1 |
| | |||||
* | (read_socket_hook): Fix arg list. | Kim F. Storm | 2004-02-27 | 1 | -1/+1 |
| | |||||
* | (BUFFER_SIZE_FACTOR): Remove. | Kim F. Storm | 2004-02-27 | 1 | -22/+8 |
| | | | | | | | | (read_input_waiting): Adapt to new read_socket_hook interface. Remove allocation and initialization of local input_event buffer, as read_socket_hook stores events directly in fifo. Allocate and initialize local hold_quit event to handle postponed quit event (and store it if set by kbd_buffer_store_event_hold). | ||||
* | (XTread_socket): Remove bufp_r and numcharsp args. Add hold_quit arg. | Kim F. Storm | 2004-02-27 | 1 | -77/+72 |
| | | | | | Rework to use just one, local, inev input_event. Store inev directly in fifo using kbd_buffer_store_event_hold. | ||||
* | (kbd_buffer_store_event_hold): Add prototype. | Kim F. Storm | 2004-02-27 | 1 | -2/+4 |
| | | | | (gen_help_event): Fix prototype. | ||||
* | (kbd_buffer_store_event_hold): New function to store | Kim F. Storm | 2004-02-27 | 1 | -49/+57 |
| | | | | | | | | | | | | | | an event into kbd fifo, but with special handling of quit event; a quit event is saved for later, and further events are discarded until the saved quit event has been processed. (kbd_buffer_store_event): Use kbd_buffer_store_event_hold. (gen_help_event): Store help event in kbd fifo. (NREAD_INPUT_EVENTS): Remove. (read_avail_input): Adapt to new read_socket_hook interface. Remove allocation and initialization of local input_event buffer, as read_socket_hook stores events directly in fifo. Allocate and initialize local hold_quit event to handle postponed quit event (and store it if set by kbd_buffer_store_event_hold). | ||||
* | *** empty log message *** | Eli Zaretskii | 2004-02-27 | 2 | -0/+10 |
| | |||||
* | Fix copyright years. | Eli Zaretskii | 2004-02-27 | 4 | -4/+5 |
| | |||||
* | In scheme-mode symbol regexp, disallow backquote and | Eli Zaretskii | 2004-02-27 | 1 | -2/+2 |
| | | | | comma, so that it DTRT in macros. | ||||
* | (sh-shell-arg, sh-require-final-newline, sh-assignment-regexp, sh-builtins) | Eli Zaretskii | 2004-02-27 | 2 | -18/+12 |
| | | | | (sh-leading-keywords, sh-other-keywords): Fix custom type. | ||||
* | Document the new min-colors face attribute. | Eli Zaretskii | 2004-02-27 | 1 | -0/+14 |
| | |||||
* | (Defining Faces): Add description for min-colors. Update example. | Eli Zaretskii | 2004-02-27 | 1 | -9/+16 |
| | |||||
* | (isearch, isearch-lazy-highlight-face): Use `min-colors'. | Eli Zaretskii | 2004-02-27 | 2 | -8/+28 |
| | |||||
* | (font-lock-comment-face, font-lock-string-face, | Eli Zaretskii | 2004-02-27 | 1 | -35/+58 |
| | | | | | | font-lock-keyword-face, font-lock-function-name-face, font-lock-variable-name-face, font-lock-constant-face): Use `min-colors`. | ||||
* | (defface): Add documentation for `min-colors'. | Eli Zaretskii | 2004-02-27 | 1 | -0/+4 |
| | |||||
* | (face-spec-set-match-display): Add a new attribute, `min-colors'. | Eli Zaretskii | 2004-02-27 | 1 | -13/+27 |
| | | | | (region, highlight, secondary-selection): Use `min-colors`. | ||||
* | Inserting Yamomotosan's changes for MacOSX image support, better support | Steven Tamm | 2004-02-26 | 9 | -1198/+3146 |
| | | | | of Asian fonts, and some long awaited header cleanup and centralization. | ||||
* | *** empty log message *** | Kim F. Storm | 2004-02-26 | 1 | -0/+4 |
| | |||||
* | Correct original attribution | Francesco Potortì | 2004-02-26 | 1 | -1/+2 |
| | |||||
* | Temporary fix; increase NREAD_INPUT_EVENTS to 512. | Kim F. Storm | 2004-02-26 | 1 | -1/+1 |
| | |||||
* | A lot of doc fix. | Vinicius Jose Latorre | 2004-02-26 | 2 | -142/+152 |
| | |||||
* | For compatibility with Emacs 20, define assq-delete-all if it's not defined. | Vinicius Jose Latorre | 2004-02-26 | 2 | -8/+30 |
| | |||||
* | (handle_single_display_prop): Handle left-fringe and | Kim F. Storm | 2004-02-25 | 1 | -40/+70 |
| | | | | | | | | | right-fringe similar to a display margin image. Specifically, the characters having the fringe prop are no longer shown, and we use IT_IMAGE/next_element_from_image with image_id = -1 to do this. Set fringe bitmap face_id in it->face_id. (produce_image_glyph): Handle image_id < 0 as "no image" case, but still realize it->face (i.e. the fringe bitmap face). | ||||
* | *** empty log message *** | Kim F. Storm | 2004-02-25 | 1 | -0/+10 |
| | |||||
* | Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-114 | Miles Bader | 2004-02-25 | 3 | -5/+29 |
| | | | | | | | | | | | | | | | Merge some minor redisplay bug-fixes from emacs--tiling--0 Patches applied: * miles@gnu.org--gnu-2004/emacs--tiling--0--patch-9 Remove bogus xassert * miles@gnu.org--gnu-2004/emacs--tiling--0--patch-10 Avoid negative descents for images with ascent > height * miles@gnu.org--gnu-2004/emacs--tiling--0--patch-13 Fix iterator-inconsistency bug in redisplay | ||||
* | Resolve CVS conflicts | Miles Bader | 2004-02-25 | 1 | -2/+1 |
| | |||||
* | ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). ↵ | Vinicius Jose Latorre | 2004-02-25 | 6 | -137/+562 |
| | | | | Reported by Markus Dreyer. | ||||
* | ABNF parser (ebnf2ps) | Vinicius Jose Latorre | 2004-02-24 | 1 | -0/+664 |
| | |||||
* | *** empty log message *** | Jason Rumney | 2004-02-24 | 1 | -0/+5 |
| | |||||
* | (slurp_file, xbm_scan, xbm_load_image) | Jason Rumney | 2004-02-24 | 1 | -13/+13 |
| | | | | (xbm_read_bitmap_data): Use unsigned char for image data. | ||||
* | *** empty log message *** | Luc Teirlinck | 2004-02-24 | 3 | -0/+15 |
| | |||||
* | (Finsert_abbrev_table_description): Doc fix. | Luc Teirlinck | 2004-02-24 | 1 | -1/+2 |
| | |||||
* | (write-abbrev-file): Make argument optional. Doc fix. | Luc Teirlinck | 2004-02-24 | 1 | -4/+11 |
| | | | | (abbrev-prefix-mark): Doc fix. | ||||
* | Various corrections and clarifications in addition to the following: | Luc Teirlinck | 2004-02-24 | 1 | -52/+61 |
| | | | | (Abbrev Tables): Delete add-abbrev (as suggested by RMS). | ||||
* | (gud-watch): Load tooltip, if necessary. | Nick Roberts | 2004-02-23 | 1 | -16/+20 |
| | | | | | | (gdb-var-create-handler): Force speedbar-update-flag to be non-nil. (gdb-var-delete): Make interactive (really). (gdb-edit-value): Make non-interactive. | ||||
* | (Watch Expressions): Update. | Nick Roberts | 2004-02-23 | 1 | -4/+7 |
| | |||||
* | (gud-install-speedbar-variables): Bind | Nick Roberts | 2004-02-23 | 1 | -4/+13 |
| | | | | | | | | gdb-var-delete to "D". (gud-speedbar-menu-items): Add gdb-var-delete and, indirectly, gdb-edit-value. (gud-speedbar-buttons): Remove gdb-var-delete from tag-line. (gud-gdb-marker-filter): Add comment for annotations. | ||||
* | *** empty log message *** | Nick Roberts | 2004-02-23 | 2 | -0/+18 |
| | |||||
* | *** empty log message *** | Glenn Morris | 2004-02-23 | 2 | -9/+24 |
| | |||||
* | Matthew Mundell <matt@mundell.ukfsn.org> | Glenn Morris | 2004-02-23 | 1 | -2/+4 |
| | | | | | (fancy-diary-display): Don't rely on return value of increment-calendar-month. | ||||
* | (w32_draw_fringe_bitmap): Draw overlaid bitmaps | Jason Rumney | 2004-02-22 | 1 | -17/+29 |
| | | | | correctly over other bitmaps. | ||||
* | *** empty log message *** | Jason Rumney | 2004-02-22 | 1 | -0/+5 |
| | |||||
* | (Documentation Tips): Fix typo. | Luc Teirlinck | 2004-02-22 | 1 | -1/+1 |
| | |||||
* | Matthew Mundell <matt@mundell.ukfsn.org> | Glenn Morris | 2004-02-22 | 1 | -1/+1 |
| | | | | (Holiday Customizing): Quote arg of holiday-sexp. | ||||
* | *** empty log message *** | Glenn Morris | 2004-02-22 | 1 | -0/+4 |
| | |||||
* | *** empty log message *** | Luc Teirlinck | 2004-02-21 | 2 | -0/+7 |
| | |||||
* | Various small changes in addition to the following: | Luc Teirlinck | 2004-02-21 | 1 | -80/+120 |
| | | | | | | | (User-Level Deletion): Mention optional BACKWARD-ONLY argument to delete-horizontal-space. (Kill Functions, Yanking, Low-Level Kill Ring): clarify and correct description of yank-handler text property at various places. | ||||
* | (Window System Selections): Add anchor. | Luc Teirlinck | 2004-02-21 | 2 | -0/+3 |
| | |||||
* | (USAGE1): Split into two halves. | Eli Zaretskii | 2004-02-21 | 2 | -6/+17 |
| | | | | | | (USAGE2): Second half of the old USAGE1. (USAGE3): Renamed from USAGE2. (USAGE4): Renamed from USAGE3. | ||||
* | (Syntax Table Functions): Clarify and correct descriptions of | Luc Teirlinck | 2004-02-21 | 2 | -29/+52 |
| | | | | | | | | make-syntax-table and copy-syntax-table. (Motion and Syntax): Clarify SYNTAXES argument to skip-syntax-forward. (Parsing Expressions): Mention that the return value of parse-partial-sexp is currently a list of ten rather than nine elements. (Categories): Various corrections and clarifications. |