aboutsummaryrefslogtreecommitdiffstats
path: root/src/coding.h
diff options
context:
space:
mode:
authorDave Love2001-02-14 23:51:03 +0000
committerDave Love2001-02-14 23:51:03 +0000
commit5549605438f9d6c6b8ece790032886ff4a8330a5 (patch)
tree36c261fb8395066f2514b1b944f5fb7eff4f1101 /src/coding.h
parent8ca3766acc368aee723574e7ccb895466fe397db (diff)
downloademacs-5549605438f9d6c6b8ece790032886ff4a8330a5.tar.gz
emacs-5549605438f9d6c6b8ece790032886ff4a8330a5.zip
Comment fixes.
Diffstat (limited to 'src/coding.h')
-rw-r--r--src/coding.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/coding.h b/src/coding.h
index 303bceda329..2d514e37640 100644
--- a/src/coding.h
+++ b/src/coding.h
@@ -133,7 +133,7 @@ enum iso_code_class_type
133 on output. */ 133 on output. */
134#define CODING_FLAG_ISO_DESIGNATE_AT_BOL 0x0400 134#define CODING_FLAG_ISO_DESIGNATE_AT_BOL 0x0400
135 135
136/* If set, do not encode unsafe charactes on output. */ 136/* If set, do not encode unsafe characters on output. */
137#define CODING_FLAG_ISO_SAFE 0x0800 137#define CODING_FLAG_ISO_SAFE 0x0800
138 138
139/* If set, extra latin codes (128..159) are accepted as a valid code 139/* If set, extra latin codes (128..159) are accepted as a valid code
@@ -241,7 +241,7 @@ enum coding_type
241 coding_type_ccl, /* The coding system of which decoder 241 coding_type_ccl, /* The coding system of which decoder
242 and encoder are written in CCL. */ 242 and encoder are written in CCL. */
243 coding_type_raw_text /* A coding system for a text 243 coding_type_raw_text /* A coding system for a text
244 containing ramdom 8-bit code which 244 containing random 8-bit code which
245 does not require code conversion 245 does not require code conversion
246 except for end-of-line format. */ 246 except for end-of-line format. */
247 }; 247 };
@@ -274,11 +274,11 @@ enum coding_type
274 The encoder stores the information in this structure when it meets 274 The encoder stores the information in this structure when it meets
275 ESC sequences for composition while encoding codes, then, after all 275 ESC sequences for composition while encoding codes, then, after all
276 text codes are encoded, puts `composition' properties on the text 276 text codes are encoded, puts `composition' properties on the text
277 by refering the structure. 277 by referring to the structure.
278 278
279 The decoder at first stores the information of a text to be 279 The decoder at first stores the information of a text to be
280 decoded, then, while decoding codes, generates ESC sequences for 280 decoded, then, while decoding codes, generates ESC sequences for
281 composition at proper places by refering the structure. */ 281 composition at proper places by referring to the structure. */
282 282
283struct composition_data 283struct composition_data
284{ 284{
@@ -296,7 +296,7 @@ struct composition_data
296 START and END are starting and ending character positions of 296 START and END are starting and ending character positions of
297 the composition relative to `char_offset'. 297 the composition relative to `char_offset'.
298 298
299 METHOD is one of `enum cmposing_status' specifying the way of 299 METHOD is one of `enum composing_status' specifying the way of
300 composition. 300 composition.
301 301
302 COMPONENT is a character or an encoded composition rule. */ 302 COMPONENT is a character or an encoded composition rule. */
@@ -307,8 +307,8 @@ struct composition_data
307 307
308 /* Pointers to the previous and next structures. When `data' is 308 /* Pointers to the previous and next structures. When `data' is
309 filled up, another structure is allocated and linked in `next'. 309 filled up, another structure is allocated and linked in `next'.
310 The new struture has backward link to this struture in `prev'. 310 The new structure has backward link to this structure in `prev'.
311 The number of chaind structures depends on how many compositions 311 The number of chained structures depends on how many compositions
312 the text being encoded or decoded contains. */ 312 the text being encoded or decoded contains. */
313 struct composition_data *prev, *next; 313 struct composition_data *prev, *next;
314}; 314};
@@ -330,7 +330,7 @@ struct composition_data
330 330
331/* If set, the decoding/encoding routines treat the current data as 331/* If set, the decoding/encoding routines treat the current data as
332 the last block of the whole text to be converted, and do 332 the last block of the whole text to be converted, and do
333 appropriate fisishing job. */ 333 appropriate finishing job. */
334#define CODING_MODE_LAST_BLOCK 0x02 334#define CODING_MODE_LAST_BLOCK 0x02
335 335
336/* If set, it means that the current source text is in a buffer which 336/* If set, it means that the current source text is in a buffer which
@@ -690,7 +690,7 @@ extern struct coding_system default_buffer_file_coding;
690/* Default coding systems used for process I/O. */ 690/* Default coding systems used for process I/O. */
691extern Lisp_Object Vdefault_process_coding_system; 691extern Lisp_Object Vdefault_process_coding_system;
692 692
693/* Function to call to force a user to force select a propert coding 693/* Function to call to force a user to force select a proper coding
694 system. */ 694 system. */
695extern Lisp_Object Vselect_safe_coding_system_function; 695extern Lisp_Object Vselect_safe_coding_system_function;
696 696