aboutsummaryrefslogtreecommitdiffstats
path: root/src/charset.c
Commit message (Collapse)AuthorAgeFilesLines
* (find_charset_in_str): Fix use of `c' instead of `c1'.Dave Love2000-02-211-2/+2
|
* Comment fix.Dave Love2000-02-091-2/+2
|
* (Fstring): If there is a multibyte char amongGerd Moellmann2000-01-251-5/+12
| | | | the args, always return a multibyte string.
* (char_bytes): Use ((1 << CHARACTERBITS) - 1) insteadKenichi Handa1999-12-271-1/+1
| | | | of GLYPH_MASK_CHAR.
* In this entry, just `Modified' means that codes for aKenichi Handa1999-12-151-704/+75
| | | | | | | | | | | | | | | | | | | | | | | | | | composite character is deleted. (Qcomposition) (leading_code_composition) (charset_composition) (min_composite_char) (cmpchar_table) (cmpchar_table_size) (n_cmpchars): Deleted. (SPLIT_COMPOSITE_SEQ): Deleted. (SPLIT_MULTIBYTE_SEQ): Modified. (char_to_string): Renamed from non_ascii_char_to_string. Modified. (string_to_char): Renamed from string_to_non_ascii_char. (split_string): Renamed from split_non_ascii_string. (char_printable_p) (Fsplit_char) (Ffind_charset_region) (Ffind_charset_string) (char_valid_p) (char_bytes) (Fchar_width) (strwidth): Modified. (find_charset_in_str): Argument CMPCHARP deleted. Modified. (Fstring): Adjusted for the change of CHAR_STRING. Modified. (hash_string) (CMPCHAR_HASH_TABLE_SIZE) (cmpchar_hash_table) (CMPCHAR_HASH_SIZE) (CMPCHAR_HASH_USED) (CMPCHAR_HASH_CMPCHAR_ID) (str_cmpchar_id) (cmpchar_component) (Fcmpcharp) (Fcmpchar_component) (Fcmpchar_cmp_rule) (Fcmpchar_cmp_rule_p) (Fcmpchar_cmp_count): Deleted. (Fcompose_string): Implemented by Emacs Lisp in composite.el. (init_charset_once): Modified. (syms_of_charset): Modified.
* (Fmake_char_internal): Print the charset ID whenEli Zaretskii1999-11-281-2/+2
| | | | signalling an error.
* (split_non_ascii_string): Define return value.Dave Love1999-11-031-0/+1
|
* Add support for large files, 64-bit Solaris, system locale codings.Paul Eggert1999-10-191-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Makefile.in (emacs): Set the LC_ALL environment variable to "C" when dumping, so that the dumped Emacs doesn't have stray locale info. (dired.o): Depend on systime.h. (editfns.o): Depend on coding.h. * alloc.c, buffer.c, callproc.c, ccl.c, charset.c, coding.c, data.c, dispnew.c, editfns.c, emacs.c, filelock.c, floatfns.c, hftctl.c, keyboard.c, process.c, sysdep.c, unexelf.c, unexhp9k800.c, unexsunos4.c, vmsfns.c, vmsgmalloc.c, w32faces.c, w32menu.c, w32term.c, w32xfns.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Include <config.h> before any system include files. * alloc.c, buffer.c, ccl.c, data.c, editfns.c, emacs.c, eval.c, fileio.c, filelock.c, frame.c, insdel.c, keymap.c, lread.c, m/alpha.h, print.c, search.c, sysdep.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Do not include <stdlib.h>, as <config.h> does this now. * callproc.c (Fcall_process): Synchronize messages locale before invoking strerror. Decode resulting string with locale-coding-system. * coding.c (Vlocale_coding_system): New var. (syms_of_coding): Adjust to above change. (emacs_strerror): New function. * coding.h (emacs_strerror, Vlocale_coding_system): New decls. * config.in (HAVE_STDIO_EXT_H, HAVE_TM_GMTOFF, HAVE___FPENDING, HAVE_FTELLO, HAVE_GETLOADAVG, HAVE_MBLEN, HAVE_MBRLEN, HAVE_STRSIGNAL): New macros. (BITS_PER_LONG): Default to 64 if _LP64 is defined. <stdlib.h>: Include if HAVE_STDLIB_H is defined and NOT_C_CODE isn't. * dired.c: Include "systime.h". (Ffile_attributes): Do not cast s.st_size to int; this loses information if int is 32 bits but st_size and EMACS_INT are larger. Treat large device numbers like large inode numbers. * dispnew.c (PENDING_OUTPUT_COUNT): Use __fpending if available. * editfns.c: Include coding.h. (emacs_strftime): Remove decl. (emacs_strftimeu): New decl. (emacs_memftimeu): Renamed from emacs_memftime; new arg UT. Use emacs_strftimeu instead of emacs_strftime. (Fformat_time_string): Convert format string using Vlocale_coding_system, and convert result back. Synchronize time locale before invoking lower level function. Invoke emacs_memftimeu, passing ut, instead of emacs_memftime. * emacs.c: Include <locale.h> if HAVE_SETLOCALE is defined. (Vmessages_locale, Vprevious_messages_locale, Vtime_locale, Vprevious_time_locale): New variables. (main): Invoke setlocale early, so that initial error messages are localized properly. But skip locale-setting if LC_ALL is "C". Fix up locale when it's safe to do so. (fixup_locale): Moved here from xterm.c. (synchronize_locale, synchronize_time_locale, synchronize_messages_locale): New functions. (syms_of_emacs): Accommodate above changes. * fileio.c (report_file_error): Convert strerror output according to Vlocale_coding_system. (Finsert_file_contents): Check for arithmetic overflow in computations that depend on file size. Report IO errors with emacs_strerror, not strerror. * fns.c (Fgethash): Declare dflt parameter. * gmalloc.c: Do not define const to nothing if HAVE_CONFIG_H is defined; that's config.h's job. * lisp.h (EMACS_INT, BITS_PER_EMACS_INT, EMACS_UINT): If _LP64, default these values to long, BITS_PER_LONG, and unsigned long. (VALBITS, MARKBIT, XINT): Do not assume 32-bit EMACS_INT. (PNTR_COMPARISON_TYPE): Default to EMACS_UINT, not to unsigned int. (code_convert_string_norecord, fixup_locale, synchronize_messages_locale, synchronize_time_locale, emacs_open, emacs_close, emacs_read, emacs_write): New decls. All Emacs callers of open, close, read, write changed to use emacs_open, emacs_close, emacs_read, emacs_write. * lread.c (file_offset, file_tell): New macros. All uses of ftell changed to file_tell. (saved_doc_string_position, prev_saved_doc_string_position): Now of type file_offset. (init_lread): Do not fix locale here; fixup_locale now does this. * m/amdahl.h, s/usg5-4.h: (NSIG): Remove. (NSIG_MINIMUM): New macro. * m/cydra5.h, m/dpx2.h, m/mips.h, m/pfa50.h, m/sps7.h, m/stride.h, m/ustation.h, s/gnu-linux.h, s/hpux.h, s/iris3-5.h, s/iris3-6.h, s/umips.h, s/usg5-4.h: (SIGIO): Do not undef. (BROKEN_SIGIO): New macro. * m/ustation.h: (SIGTSTP): Do not undef. (BROKEN_SIGTSTP): New macro. * s/gnu-linux.h: (SIGPOLL, SIGURG): Do not undef. (BROKEN_SIGPOLL, BROKEN_SIGURG): New macros. * s/ptx4.h: (SIGINFO): Do not undef. (BROKEN_SIGINFO): New macros. * m/delta.h, s/ptx.h, s/template.h: Doc fix. * mktime.c, strftime.c: Update to glibc 2.1.2 version, with some Emacs-related changes merged. * print.c (float_to_string): Prepend "-" to representation of a NaN if the NaN is negative. * process.c (sys_siglist): Omit if HAVE_STRSIGNAL. (wait_reading_process_input): Use emacs_strerror, not strerror. * process.c (status_message, sigchld_handler): Synchronize locale, then use strsignal istead of sys_siglist. * w32proc.c (sys_wait): Likewise. * s/aix3-1.h, s/bsd4-1.h, s/dgux.h, s/gnu-linux.h, s/hiuxmpp.h, s/hpux.h, s/iris3-5.h, s/iris3-6.h, s/irix3-3.h, s/osf1.h, s/rtu.h, s/sunos4-1.h, s/unipl5-0.h, s/unipl5-2.h, s/usg5-0.h, s/usg5-2-2.h, s/usg5-2.h, s/usg5-3.h, s/xenix.h: (open, close, read, write, INTERRUPTIBLE_OPEN, INTERRUPTIBLE_CLOSE, INTERRUPTIBLE_IO): Remove. * s/sol2-5.h (_LARGEFILE_SOURCE, _FILE_OFFSET_BITS): New macros. * sysdep.c (sys_read, sys_write, read, write, sys_close, close, sys_open, open): Remove. (emacs_open, emacs_close, emacs_read, emacs_write): Always define; the old INTERRUPTIBLE_OPEN, INTERRUPTIBLE_CLOSE, and INTERRUPTIBLE_IO macros are no longer used. (emacs_open): Renamed from sys_open. Merge BSD4_1 version. (emacs_close): Renamed from sys_close. (emacs_read): Renamed from sys_read. (emacs_write): Renamed from sys_write. (sys_siglist): Do not declare if HAVE_STRSIGNAL. (dup2): Do not print error on failure; the real dup2 doesn't. (strsignal): New function, defined if !HAVE_STRSIGNAL. * syssignal.h (SIGINFO): Undef if defined and if BROKEN_SIGINFO is defined. (SIGIO, SIGPOLL, SIGTSTP, SIGURG): Likewise. (NSIG): If less than NSIG_MINIMUM, define to NSIG_MINIMUM. (strsignal): Declare if !HAVE_STRSIGNAL. * unexelf.c (ElfBitsW, ELFSIZE, ElfExpandBitsW): New macros. (ElfW): Define in terms of ElfExpandBitsW. * w32proc.c (sys_siglist): Remove decl. * xdisp.c (decode_mode_spec): 3rd arg is int, not char, to comply with ANSI C. (display_string): Declare face_string_pos arg. * xfns.c (Fx_show_tip): Declare timeout param. * xterm.c: No need to include locale.h. (x_alloc_lighter_color, x_setup_relief_color): Pass arg as double, not float, for compatibility with ANSI C. (fixup_locale): Move to emacs.c. (x_term_init): Do not setlocale or fixup locale; the main program does this now.
* (CHAR_COMPONENTS_VALID_P): Fix for ASCII.Kenichi Handa1999-09-081-3/+5
|
* Reset MSBs of arguments of MAKE_CHAR.Kenichi Handa1999-09-081-1/+1
|
* Lots of comments fixed.Kenichi Handa1999-09-071-23/+40
| | | | | | (SPLIT_MULTIBYTE_SEQ): Make it work also for ASCII string. (CHAR_COMPONENTS_VALID_P): Name changed from CHAR_COMPONENT_VALID_P. Caller changed.
* (SPLIT_COMPOSITE_SEQ): New macro.Kenichi Handa1999-09-031-172/+245
| | | | | | | | | | | | | | | | | | | | | | | | | (SPLIT_CHARACTER_SEQ): New macro. (SPLIT_MULTIBYTE_SEQ): New macro. (CHAR_COMPONENT_VALID_P): New macro. (non_ascii_char_to_string): Generate a multibyte sequence as far as possible. (string_to_non_ascii_char): The 4th arg exclude_tail_garbage is deleted. Caller changed. Use the macro SPLIT_MULTIBYTE_SEQ. (split_non_ascii_string): Likewise. (multibyte_form_length): Use the macro PARSE_MULTIBYTE_SEQ. (char_printable_p): New function. (translate_char): Check character by NATNUMP instead of INTEGERP. (unibyte_char_to_multibyte): Call char_valid_p instead of VALID_MULTIBYTE_CHAR_P. (Fmake_char_internal): Check the arguments more rigidly. (Fcharset_after): Use the macro SPLIT_MULTIBYTE_SEQ. (char_valid_p): Check the validity by CHAR_COMPONENT_VALID_P. (Fmultibyte_char_to_unibyte): Check the validity of character by CHAR_VALID_P. (chars_in_text): Call multibyte_chars_in_text. (multibyte_chars_in_text): Use the macro PARSE_MULTIBYTE_SEQ. (Fcompose_string): Use the macro STRING_CHAR_AND_LENGTH instead of STRING_CHAR_AND_CHAR_LENGTH (which is obsolete now).
* (non_ascii_char_to_string): Handle modifier bits asKenichi Handa1999-08-131-6/+37
| | | | the same as Lisp reader.
* (Ffind_charset_region): Fix doc typo.Richard M. Stallman1999-01-021-1/+1
|
* (Fcharset_after): Check range. If POS is out ofKenichi Handa1998-12-221-2/+9
| | | | range, return nil.
* (unibyte_char_to_multibyte): Don't convert 7-bit ASCII characters viaEli Zaretskii1998-12-211-1/+1
| | | | nonascii-translation-table.
* (Qunknown): New variable.Kenichi Handa1998-12-151-27/+86
| | | | | | | | | | | | | | | (init_charset_once): Intern and staticpro Qunknown. Initialize all elements of Vcharset_symbol_table to Qunknown. (find_charset_in_str): New arg MULTIBYTE. If it is zero, check unibyte characters only. For an invalid composition sequence, set CHARSETS[1] to 1. (Ffind_charset_region): Call find_charset_in_str with an appropriate MULTIBYTE arg. If undefined charsets are found, include `unknown' is the return value. (Ffind_charset_string): Likewise. (Fsplit_char): If CHAR is invalid, return `(unknown CHAR)'. (str_cmpchar_id): Max composite character code should be less than GENERIC_COMPOSITION_CHAR.
* (non_ascii_char_to_string): If C has modifier bits,Kenichi Handa1998-11-261-0/+17
| | | | | | make an appropriate one byte string. (char_bytes): Handle the case that C is a single byte char or has modifier bits.
* (non_ascii_char_to_string): If C is negative, signal error.Kenichi Handa1998-11-161-0/+3
|
* (char_valid_p): Handle a composite character correctly.Kenichi Handa1998-11-111-1/+1
|
* (str_cmpchar_id): Check the byte sequence forKenichi Handa1998-11-111-3/+13
| | | | | | composition more rigidly. (Fcompose_string): Allow DEL to be composed. Signal error if STR contains an invalid multibyte sequence.
* (cmpchar_component): New arg NOERROR. CheckKenichi Handa1998-11-101-21/+33
| | | | | | | | | | composition char ID more strictly. (Fcmpchar_component): Call cmpchar_component with NOERROR arg zero. (Fcmpchar_cmp_rule): If CHARACTER should be composed relatively, return 255. (Fcompose_string): Signal error if STR contains a rule-based composition character.
* (string_to_non_ascii_char): Return correct length forKenichi Handa1998-11-091-2/+4
| | | | a charset of dimension 2 and composition character.
* (init_charset_once): Fix previous change.Kenichi Handa1998-11-071-1/+1
|
* (string_to_non_ascii_char): Fix previous change.Kenichi Handa1998-11-061-21/+24
| | | | (char_valid_p): The the validity of CHARSET by CHARSET_DEFINED_P.
* (string_to_non_ascii_char): Fix previous change.Kenichi Handa1998-11-061-3/+4
|
* (string_to_non_ascii_char): Change the check for theKenichi Handa1998-11-041-5/+14
| | | | | | | varidity of multibyte form. (update_charset_table): Check validity of BYTES. Don't set bytes_by_char_head here. (init_charset_once): Set bytes_by_char_head completely.
* (Fchar_bytes): Doc fix.Andreas Schwab1998-10-301-4/+4
| | | | | | (char_bytes): Fix returned value to match returned type. (syms_of_charset): Fix type clash in initialisation of Vauto_fill_chars.
* (Vauto_fill_chars, Qauto_fill_chars): New variables.Kenichi Handa1998-10-191-0/+16
| | | | | (syms_of_charset): Staticpro and initialize Qauto_fill_chars. Declare auto-fill-chars as a Lisp variable and initialize it.
* (Fstring): Call make_string instead ofKenichi Handa1998-10-121-9/+20
| | | | | | | | | make_string_from_bytes. (Ffind_charset_region): Include `composition' in the returned list if the region contains any composite characters. (Ffind_charset_string): Include `composition' in the returned list if the string contains any composite characters. (find_charset_in_str): Handle CMPCHARP arg correctly.
* (invalid_character): Prepend `0' to octalKenichi Handa1998-10-081-1/+1
| | | | representation. Give error sufficient args.
* (Ffind_charset_region): Optimization for unibyte buffer.Kenichi Handa1998-09-081-1/+8
| | | | (Ffind_charset_string): For unibyte string, return (ascii).
* (unibyte_char_to_multibyte):Kenichi Handa1998-08-311-9/+25
| | | | | | | | | Vnonacii_translation_table will convert a 7-bit charcater. (multibyte_char_to_unibyte): Handle the case that Vnonacii_translation_table converts a multibyte charcater to a unibyte charcter of less than 128. (init_charset_once): Initialize nonascii_insert_offset and Vnonacii_translation_table.
* (Fchar_bytes): Add \n\ in doc-string.Kenichi Handa1998-08-291-1/+1
|
* (Fchar_bytes): Now always return 1.Kenichi Handa1998-08-281-7/+17
| | | | (char_bytes): New function.
* (Fmultibyte_char_to_unibyte): New function.Richard M. Stallman1998-08-181-0/+21
| | | | (syms_of_charset): defsubr it.
* (multibyte_char_to_unibyte): New function.Kenichi Handa1998-08-071-2/+41
| | | | | (charset_id_internal): Avoid initializer for Lisp_Object. (init_charset_once): Likewise.
* (Fdefine_charset): Fix doc-string.Kenichi Handa1998-07-191-2/+2
|
* (Fchars_in_region): Coerce markers.Richard M. Stallman1998-07-121-0/+3
|
* (Vgeneric_character_list): New variable.Kenichi Handa1998-07-061-0/+29
| | | | | | (init_charset_once): Init and staticpro it. (Fgeneric_character_list): New function. (syms_of_charset): defsubr it.
* (find_charset_in_str): Do not set the value ofKenichi Handa1998-06-201-5/+0
| | | | charsets[LEADING_CODE_COMPOSITION].
* (string_to_non_ascii_char): Don't check the argKenichi Handa1998-06-021-3/+5
| | | | EXCLUDE_TAIL_GARBAGE for an invalid composite characters.
* (syms_of_charset): Put \n\ at eol of docstring.Karl Heuer1998-05-301-1/+1
|
* Change term "character translation table" toKenichi Handa1998-05-221-15/+22
| | | | | | | | "translation table". (string_to_non_ascii_char): New arg EXCLUDE_TAIL_GARBAGE. Caller changed. (Funibyte_char_to_multibyte): Doc-string fixed. (syms_of_charset): Doc-string fixed.
* (find_charset_in_str): New arg CMPCHARP.Kenichi Handa1998-05-211-5/+15
| | | | | (Ffind_charset_region): Call find_charset_in_str with CMPCHARP 0. (Ffind_charset_string): Likewise.
* Change terms unify/unification toKenichi Handa1998-05-181-27/+28
| | | | | | translate/translation respectively throughtout the file. (ONE_BYTE_CHAR_WIDTH): Delete unnecessary continuation line at the tail.
* (syms_of_charset): Doc fix for nonascii-insert-offset.Richard M. Stallman1998-04-231-3/+4
|
* (Funibyte_char_to_multibyte): Doc fix.Richard M. Stallman1998-04-231-2/+2
|
* (Fchars_in_region): Fix mixing of Lisp_Object and int.Andreas Schwab1998-04-141-1/+1
|
* Fix -Wimplicit warnings.Andreas Schwab1998-04-141-0/+7
|