summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* fileio.c (init_fileio_once): New function.Geoff Voelker1998-10-301-1/+7
|
* emacs.c (main): Invoke init_fileio_once.Geoff Voelker1998-10-301-0/+1
|
* (XTread_socket): Check the returned value of XmbLookupString more carefully.Paul Eggert1998-10-291-0/+10
|
* (check_markers): Check if markers are at characterKenichi Handa1998-10-281-6/+61
| | | | | | | | | | | | | | | | | boundry. (adjust_markers_for_insert): Fix previous change. (count_combining_before): Don't limit the check at BEGV. (count_combining_after): Don't limit the check at ZV. (CHECK_BYTE_COMBINING_FOR_INSERT): New macro. (insert_1_both): Call CHECK_BYTE_COMBINING_FOR_INSERT. (insert_from_string_1): Likewise. (insert_from_buffer_1): Likewise. (adjust_after_replace): Inhibit bytes combined across region boundary. Update end_unchanged correctly. (replace_range): Call CHECK_BYTE_COMBINING_FOR_INSERT. Update end_unchanged correctly. (del_range_2): Inhibit bytes combined across region boundary. Update end_unchanged correctly.
* (Fsubst_char_in_region): Fix previous change.Kenichi Handa1998-10-281-32/+12
| | | | (Ftranslate_region): Fix previous change.
* (DECODE_CHARACTER_ASCII): Check validity of insertedKenichi Handa1998-10-281-2/+10
| | | | | | | code. (DECODE_CHARACTER_DIMENSION1): Likewise. (DECODE_CHARACTER_DIMENSION2): Likewise. (decode_coding_sjis_big5): Check the 2nd byte of SJIS correctly.
* (Fset_message_beep): Recognize 'silent.Geoff Voelker1998-10-281-3/+13
| | | | (w32_sys_ring_bell): Do nothing for the 'silent sound.
* (Vnext_selection_coding_system): New variable.Geoff Voelker1998-10-281-5/+46
| | | | | | | | (syms_of_w32select): DEFVAR_LISP it. (Fw32_set_clipboard_data): Use Vnext_selection_coding_system if non-nil. Always convert multibyte strings. (Fw32_get_clipboard_data): Use Vnext_selection_coding_system if non-nil. Always convert a string that includes non-ASCII characters.
* (initialize-new-tags-table):Richard M. Stallman1998-10-281-2/+4
| | | | Do not alter find-tag-marker-ring and tags-location-ring.
* (w32-use-w32-font-dialog, w32-fixed-font-alist):Geoff Voelker1998-10-271-2/+176
| | | | | | New variables. (mouse-set-font): Use font menus instead of dialog according to w32-use-w32-font-dialog.
* (check_windows_init_file): Also look in load path specifiedGeoff Voelker1998-10-271-2/+5
| | | | in environment.
* (w32_color_map_lookup): Remove duplicate definition.Geoff Voelker1998-10-271-32/+0
|
* (Fbase64_decode_string): Doc fix.Richard M. Stallman1998-10-271-4/+4
| | | | | (Fbase64_decode_region, Fbase64_encode_string Fbase64_encode_region): Likewise.
* (Fbase64_decode_region, Fbase64_encode_region): FixDave Love1998-10-271-2/+2
| | | | newline in doc string.
* (adjust_after_replace): Correctly handle the case thatKenichi Handa1998-10-271-6/+17
| | | | | both byte combining before and byte combining after happen. (replace_range): Likewise.
* (Fsubst_char_in_region): Correctly handle the caseKenichi Handa1998-10-271-29/+69
| | | | | that byte combining before happens. (Ftranslate_region): Likewise.
* (Fformat): Increase buffer size for floating format.Richard M. Stallman1998-10-261-1/+1
|
* Add title parameters to frames.Edward M. Reingold1998-10-261-5/+6
|
* Doc fixes.Karl Heuer1998-10-261-19/+19
|
* User option for multibyte buffer handling and doc fix.Karl Heuer1998-10-261-398/+569
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (ps-multibyte-buffer): New user option. (ps-setup): Print new user option. (ps-print-quote): New fun. (ps-color-p, ps-mule-font-info-database-latin): New var. (ps-default-color, ps-mule-font-info-database) (ps-mule-font-info-database-ps-bdf): Adjust initialization. (ps-mule-get-font-spec, ps-mule-begin, ps-begin-file) (ps-plot-with-face, ps-generate-postscript-with-faces, ps-generate): Little code improvement. (ps-mule-initialize): Initialize ps-mule-font-info-database. (ps-print-prologue-header, ps-font-family, ps-font-size) (ps-header-font-family, ps-header-font-size, ps-header-title-font-size) (ps-build-face-reference, ps-mule-font-info-database-bdf) (ps-mule-external-libraries, ps-mule-init-external-library) (ps-mule-prepare-font, ps-mule-find-wrappoint, ps-mule-plot-string): doc fix. To make it work also on Emacs 20.2 and the earlier version, check the value of mule-version. (ps-print-version): New version number (4.1.1) and doc fix. (ps-print-prologue-header): New user option. (ps-color-values, ps-xemacs-face-kind-p, ps-mapper, ps-extent-sorter): Conditional compilation for GNU Emacs and emacsens. (ps-generate-postscript-with-faces): Skip invisible text better. (ps-setup): Print new user option. (ps-print-preprint): Check if input file name exists and is unwritable. (ps-begin-file): Adjust PostScript prologue header for duplex printers and insert user PostScript prologue header comments. (ps-mule-encode-bit, ps-mule-string-ascii, ps-mule-string-encoding): New funs. (dos-ps-printer, lazy-lock-fontify-buffer): Eliminated. (ps-mule-prologue, ps-mule-cmpchar-prologue, ps-mule-bitmap-prologue): PostScript programming normalization. (ps-mule-encode-7bit, ps-mule-encode-8bit, ps-mule-generate-font) (ps-mule-generate-glyphs, ps-mule-prepare-font, ps-mule-plot-string) (ps-mule-skip-same-charset, ps-mule-plot-rule-cmpchar) (ps-mule-plot-cmpchar, ps-mule-prepare-cmpchar-font) (ps-mule-initialize, ps-mule-begin, ps-face-bold-p, ps-do-despool): Programming style normalization.
* (compose-region): Insert then deleteKenichi Handa1998-10-261-9/+10
| | | | | to preserve markers. (decompose-region): Use search-forward for efficiency.
* (in-is13194-devanagari-pre-write-conversion): Cancel previousKenichi Handa1998-10-261-5/+5
| | | | change, use generate-new-buffer instead of get-buffer-create.
* (pre-write-encode-hz): Cancel previousKenichi Handa1998-10-261-6/+6
| | | | change, use generate-new-buffer instead of get-buffer-create.
* (thai-pre-write-conversion): Cancel previousKenichi Handa1998-10-261-9/+24
| | | | change, use generate-new-buffer instead of get-buffer-create.
* (tibetan-pre-write-conversion): Cancel previousKenichi Handa1998-10-261-6/+6
| | | | change, use generate-new-buffer instead of get-buffer-create.
* (viqr-pre-write-conversion): Cancel previousKenichi Handa1998-10-261-5/+5
| | | | change, use generate-new-buffer instead of get-buffer-create.
* (syms_of_category): Doc-string modified.Kenichi Handa1998-10-261-2/+2
|
* (code_convert_region): Kill the work buffer created byKenichi Handa1998-10-261-3/+5
| | | | pre-write-conversion.
* (desktop-buffer-dired): Use dired-maybe-insert-subdir.Richard M. Stallman1998-10-261-1/+1
|
* (main) [HAVE_NTGUI]: Invoke syms_of_fontset().Geoff Voelker1998-10-251-0/+1
|
* Fix maintainer email addr.Richard M. Stallman1998-10-251-1/+1
|
* (adjust_markers_for_insert): Adjust markers by takingKenichi Handa1998-10-241-37/+44
| | | | | | | | | | combined_before_bytes and combined_after_bytes into account. (count_combining_after): Handle the case that LENGTH is zero. (adjust_after_replace): Record deletion at correct buffer position. Handle the case that LEN is zero. (replace_range): Record deletion at correct buffer position. (del_range_2): Call adjust_makers_for_replace to adjust makers for combined bytes.
* (code_convert_region): While preserving the orignalKenichi Handa1998-10-241-5/+6
| | | | point, pay attention to the byte combining problem.
* (Fbase64_decode_region): Pay attention to the byteKenichi Handa1998-10-241-6/+16
| | | | combining problem.
* (desktop-create-buffer): Handle old (broken) minor mode support.Thien-Thi Nguyen1998-10-221-2/+4
|
* (Fgarbage_collect): Block input around most of the function.Richard M. Stallman1998-10-221-0/+4
|
* (Info-next-menu-item): Stay on top of node.Richard M. Stallman1998-10-221-6/+8
|
* (menu-bar-options-menu): Add options for truncate-lines and show-paren.Richard M. Stallman1998-10-211-0/+6
|
* Add doc strings CORRECTLY!Edward M. Reingold1998-10-211-4/+4
|
* (rmail-get-new-mail): Delete garbage in any case.Richard M. Stallman1998-10-211-2/+2
|
* (whois-get-tld): Rewrite not to use `do'.Richard M. Stallman1998-10-211-6/+8
|
* (rmail-output): Insert newline only if necessary.Richard M. Stallman1998-10-211-1/+1
|
* Setup charset property nospace-between-words.Kenichi Handa1998-10-211-2/+4
|
* (get-charset-property): If CHARSET isKenichi Handa1998-10-211-3/+5
| | | | | composition, return nil. (put-charset-property): If CHARSET is composition, do nothing.
* (in-is13194-devanagari-pre-write-conversion): Use with-temp-buffer.Kenichi Handa1998-10-211-8/+6
|
* (pre-write-encode-hz): Use with-temp-buffer.Kenichi Handa1998-10-211-9/+7
|
* (thai-pre-write-conversion): Use with-temp-buffer.Kenichi Handa1998-10-211-8/+6
|
* (tibetan-pre-write-conversion): Use with-temp-buffer.Kenichi Handa1998-10-211-9/+7
|
* (viqr-pre-write-conversion): Use with-temp-buffer.Kenichi Handa1998-10-211-8/+6
|
* (do-auto-fill): Adjust argument for fill-find-break-point.Kenichi Handa1998-10-211-5/+9
|