summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* (Fbury_buffer): add missing semiErik Naggum1997-03-231-1/+1
|
* (frames_bury_buffer): New function.Richard M. Stallman1997-03-231-0/+16
|
* (Fbury_buffer): Call frames_bury_buffer.Richard M. Stallman1997-03-231-0/+2
|
* (XTread_socket): Accept XK_ISO_* keys.Richard M. Stallman1997-03-221-1/+1
|
* (make_lispy_event): Use iso_lispy_function_keys forRichard M. Stallman1997-03-221-12/+42
| | | | | | XK_ISO_* keys found in XFree86. (ISO_FUNCTION_KEY_OFFSET): New macro. (iso_lispy_function_keys): New table.
* (XTread_socket): Handle ISO_Left_Tab.Richard M. Stallman1997-03-221-0/+3
|
* (Fset_window_buffer): Increment display_count if it is an integer.Richard M. Stallman1997-03-221-0/+3
|
* (Freplace_match): Give error ifRichard M. Stallman1997-03-221-2/+8
| | | | NEWTEXT uses backslash in an invalid way.
* (wait_reading_process_input): If wait_for_cell,Richard M. Stallman1997-03-221-1/+10
| | | | | | | | ignore subprocess input and respond only to keyboard. (non_process_wait_mask): New variable. (add_keyboard_wait_descriptor): Update it. (delete_keyboard_wait_descriptor): Update it. (init_process): Initialize it.
* (print): Generate a backslash in \2e10.Richard M. Stallman1997-03-221-1/+3
|
* (struct frame): New field buffer_list.Richard M. Stallman1997-03-221-1/+4
|
* (frame_buffer_list, set_frame_buffer_list): New functions.Richard M. Stallman1997-03-221-1/+46
| | | | | | | | | | (store_frame_param): Handle buffer-list parameter. (Qbuffer_list): New variable. (syms_of_frame_1): Initialize it. (make_frame): Initialize buffer_list field. (Fframe_parameters): Handle buffer-list parameter. (frames_discard_buffer): New function. (make_frame): Initialize buffer_list.
* Change copyright year.Richard M. Stallman1997-03-221-1/+1
|
* (struct buffer): New field display_count.Richard M. Stallman1997-03-221-0/+3
|
* (reset_buffer): Initialize display_count slot.Richard M. Stallman1997-03-221-6/+54
| | | | | | | | | (Fkill_buffer): Call frames_discard_buffer. (record_buffer): Move buffer to front of frame_buffer_list. (Fother_buffer): Use frame_buffer_list. (init_buffer_once): Set up display_count. (syms_of_buffer): Set up Lisp variable.
* (mark_object): Mark the buffer_list field.Richard M. Stallman1997-03-221-0/+1
|
* (dumpglyphs): Set a clipping region when we draw glyphsKenichi Handa1997-03-191-111/+183
| | | | | | with a font of inappropriate size. (x_list_fonts): Try alternate fonts if we can't find a font of an appropriate size.
* (Valternative_fontname_alist): New variable.Kenichi Handa1997-03-191-1/+7
| | | | (syms_of_fontset): Declare Lisp variable alternative-fontname-alist.
* (Valternative_fontname_alist): Extern it.Kenichi Handa1997-03-191-0/+1
|
* (insert_glyphs): Fix a bug which turns up whenKenichi Handa1997-03-191-1/+1
| | | | TS_ins_multi_chars is 0.
* Adjusted for the change of MAX_CHARSET.Kenichi Handa1997-03-185-16/+16
|
* (describe_vector): Adjusted for the change of CHAR_TABLE_ORDINARY_SLOTS.Kenichi Handa1997-03-181-13/+18
| | | | | (push_key_description): A key code less than 512 is printed with 3 octal numbers. Print only entries of valid charsets.
* (CHAR_TABLE_ORDINARY_SLOTS): Change to 384 (== 256 + 128).Kenichi Handa1997-03-181-4/+32
| | | | | | (CHAR_TABLE_STANDARD_SLOTS): Adjusted for the above change. (CHAR_TABLE_SINGLE_BYTE_SLOTS): New macro. (CHAR_TABLE_REF, CHAR_TABLE_SET): New macros.
* Adjusted for the change of CHAR_TABLE_ORDINARY_SLOTS.Kenichi Handa1997-03-182-8/+8
|
* Adjusted for the change of MAX_CHARSET.Kenichi Handa1997-03-181-24/+23
| | | | | | (str_cmpchar_id): Return -1 if we have no more room for a new composite character. (Fmake_char_internal): Docstring is moved to lisp/mule.el.
* (MAX_CHARSET): Definition changed to the actualKenichi Handa1997-03-181-5/+8
| | | | | maximum valid charset. (MAX_CHAR): New macro.
* (Faref, Faset): Adjusted for the change of CHAR_TABLE_ORDINARY_SLOTS.Kenichi Handa1997-03-181-12/+10
|
* (GLYPH_FOLLOW_ALIASES): Assure that the resulting GKenichi Handa1997-03-181-4/+8
| | | | contains valid character code.
* (map_char_table): Handle multibyte characters.Kenichi Handa1997-03-181-8/+21
|
* (SET_RAW_SYNTAX_ENTRY, SYNTAX_ENTRY): Adjusted for the change ofKenichi Handa1997-03-181-2/+2
| | | | CHAR_TABLE_ORDINARY_SLOTS.
* (encode_terminal_code): Check validity of character code.Kenichi Handa1997-03-181-4/+9
|
* (copy_part_of_rope): Declare glyph as type GLYPH. For aKenichi Handa1997-03-181-14/+29
| | | | | | invalid character code, use ' ' (space). (display_string, display_text_line): Check validity of character code before calling fix_glyph.
* (x_list_fonts): Comment about cached font list added.Kenichi Handa1997-03-181-1/+6
|
* Fix typo in comment.Karl Heuer1997-03-171-1/+1
|
* Fix typos in comment.Karl Heuer1997-03-171-2/+2
|
* (change_window_height): Handle shrink as well as enlarge.Karl Heuer1997-03-141-1/+1
|
* (FAST_MAKE_GLYPH): Don't cast CHAR arg; character codesKarl Heuer1997-03-101-2/+1
| | | | are now wider than C chars.
* (decode_eol): Fix bug of converting CRLF to LF.Kenichi Handa1997-03-051-1/+1
|
* (compute_motion): When POS >= TO, don't callKenichi Handa1997-03-051-14/+20
| | | | find_before_next_newline() as it assumes POS < TO.
* (CATEGORY_SET): Cast arg C toKenichi Handa1997-03-031-5/+7
| | | | `unsigned char' before indexing category table directly.
* [__GLIBC__ >= 2]: Don't declare __getpagesize.Karl Heuer1997-03-011-0/+4
|
* Initial revisionKarl Heuer1997-03-011-0/+1638
|
* (SET_RAW_SYNTAX_ENTRY, SYNTAX_ENTRY): Cast arg C toKenichi Handa1997-02-281-8/+10
| | | | `unsigned char' before indexing syntax table directly.
* (init_syntax_once): Add trick to avoid compiler warningKenichi Handa1997-02-281-3/+9
| | | | of "comparison is always 1 ...".
* (Fload): Call Vload_source_file_function with 4 args.Erik Naggum1997-02-271-1/+1
|
* (init_buffer_once): Make memberKenichi Handa1997-02-271-2/+9
| | | | | | enable_multibyte_characters of struct buffer not always local. (reset_buffer): Do not reset b->enable_multibyte_characters. (syms_of_buffer): Declare default-enable-multibyte-characters.
* (CATEGORY_SET): For a composite character, returnKenichi Handa1997-02-271-10/+13
| | | | category set of the first component.
* (Fregister_ccl_program): Escape newlines in docstring.Kenichi Handa1997-02-271-2/+2
|
* (Fcmpchar_cmp_rule): Escape newlines in docstring.Kenichi Handa1997-02-271-8/+8
|
* (INC_POS, DEC_POS): Don't increase or decrease tooKenichi Handa1997-02-271-6/+9
| | | | much if there's binary code (invalid character code).