aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenichi Handa2002-03-01 01:06:01 +0000
committerKenichi Handa2002-03-01 01:06:01 +0000
commit83be827addf1541b709f80e9f0fc0d0e9ba317e3 (patch)
tree6aa1e96f75c0a1c2ae2b52db806fcee00d74500b /src
parent85969c224afb860db6dea46142ae77bbbd7ff2bd (diff)
downloademacs-83be827addf1541b709f80e9f0fc0d0e9ba317e3.tar.gz
emacs-83be827addf1541b709f80e9f0fc0d0e9ba317e3.zip
Include "character.h" instead of "charset.h".
Diffstat (limited to 'src')
-rw-r--r--src/abbrev.c2
-rw-r--r--src/bytecode.c2
-rw-r--r--src/casefiddle.c2
-rw-r--r--src/cmds.c2
-rw-r--r--src/dispnew.c2
-rw-r--r--src/doc.c2
-rw-r--r--src/doprnt.c2
-rw-r--r--src/dosfns.c2
-rw-r--r--src/frame.c2
-rw-r--r--src/marker.c2
-rw-r--r--src/minibuf.c2
-rw-r--r--src/msdos.c2
-rw-r--r--src/w16select.c2
-rw-r--r--src/w32bdf.c2
-rw-r--r--src/w32console.c2
15 files changed, 15 insertions, 15 deletions
diff --git a/src/abbrev.c b/src/abbrev.c
index 3edbe245831..fc3f304d3fb 100644
--- a/src/abbrev.c
+++ b/src/abbrev.c
@@ -27,7 +27,7 @@ Boston, MA 02111-1307, USA. */
27#include "commands.h" 27#include "commands.h"
28#include "buffer.h" 28#include "buffer.h"
29#include "window.h" 29#include "window.h"
30#include "charset.h" 30#include "character.h"
31#include "syntax.h" 31#include "syntax.h"
32 32
33/* An abbrev table is an obarray. 33/* An abbrev table is an obarray.
diff --git a/src/bytecode.c b/src/bytecode.c
index f24132dae25..6c4e34ddaa7 100644
--- a/src/bytecode.c
+++ b/src/bytecode.c
@@ -37,7 +37,7 @@ by Hallvard:
37#include <config.h> 37#include <config.h>
38#include "lisp.h" 38#include "lisp.h"
39#include "buffer.h" 39#include "buffer.h"
40#include "charset.h" 40#include "character.h"
41#include "syntax.h" 41#include "syntax.h"
42 42
43#ifdef CHECK_FRAME_FONT 43#ifdef CHECK_FRAME_FONT
diff --git a/src/casefiddle.c b/src/casefiddle.c
index c449547bf1d..790ae1e53bb 100644
--- a/src/casefiddle.c
+++ b/src/casefiddle.c
@@ -22,7 +22,7 @@ Boston, MA 02111-1307, USA. */
22#include <config.h> 22#include <config.h>
23#include "lisp.h" 23#include "lisp.h"
24#include "buffer.h" 24#include "buffer.h"
25#include "charset.h" 25#include "character.h"
26#include "commands.h" 26#include "commands.h"
27#include "syntax.h" 27#include "syntax.h"
28#include "composite.h" 28#include "composite.h"
diff --git a/src/cmds.c b/src/cmds.c
index 09362a7f5de..045afbbe92d 100644
--- a/src/cmds.c
+++ b/src/cmds.c
@@ -23,7 +23,7 @@ Boston, MA 02111-1307, USA. */
23#include "lisp.h" 23#include "lisp.h"
24#include "commands.h" 24#include "commands.h"
25#include "buffer.h" 25#include "buffer.h"
26#include "charset.h" 26#include "character.h"
27#include "syntax.h" 27#include "syntax.h"
28#include "window.h" 28#include "window.h"
29#include "keyboard.h" 29#include "keyboard.h"
diff --git a/src/dispnew.c b/src/dispnew.c
index 84cab92eaf5..196429fb503 100644
--- a/src/dispnew.c
+++ b/src/dispnew.c
@@ -36,7 +36,7 @@ Boston, MA 02111-1307, USA. */
36#include "dispextern.h" 36#include "dispextern.h"
37#include "cm.h" 37#include "cm.h"
38#include "buffer.h" 38#include "buffer.h"
39#include "charset.h" 39#include "character.h"
40#include "keyboard.h" 40#include "keyboard.h"
41#include "frame.h" 41#include "frame.h"
42#include "window.h" 42#include "window.h"
diff --git a/src/doc.c b/src/doc.c
index 8bb8bef7884..d08522217c2 100644
--- a/src/doc.c
+++ b/src/doc.c
@@ -39,7 +39,7 @@ Boston, MA 02111-1307, USA. */
39#include "lisp.h" 39#include "lisp.h"
40#include "buffer.h" 40#include "buffer.h"
41#include "keyboard.h" 41#include "keyboard.h"
42#include "charset.h" 42#include "character.h"
43#include "keymap.h" 43#include "keymap.h"
44 44
45#ifdef HAVE_INDEX 45#ifdef HAVE_INDEX
diff --git a/src/doprnt.c b/src/doprnt.c
index 82a96c7d673..73d4324868f 100644
--- a/src/doprnt.c
+++ b/src/doprnt.c
@@ -46,7 +46,7 @@ Boston, MA 02111-1307, USA. */
46/* Since we use the macro CHAR_HEAD_P, we have to include this, but 46/* Since we use the macro CHAR_HEAD_P, we have to include this, but
47 don't have to include others because CHAR_HEAD_P does not contains 47 don't have to include others because CHAR_HEAD_P does not contains
48 another macro. */ 48 another macro. */
49#include "charset.h" 49#include "character.h"
50 50
51static int doprnt1 (); 51static int doprnt1 ();
52 52
diff --git a/src/dosfns.c b/src/dosfns.c
index 3c185bb035e..97486b6ccae 100644
--- a/src/dosfns.c
+++ b/src/dosfns.c
@@ -39,7 +39,7 @@ Boston, MA 02111-1307, USA. */
39#include "dosfns.h" 39#include "dosfns.h"
40#include "msdos.h" 40#include "msdos.h"
41#include "dispextern.h" 41#include "dispextern.h"
42#include "charset.h" 42#include "character.h"
43#include "coding.h" 43#include "coding.h"
44#include <dpmi.h> 44#include <dpmi.h>
45#include <go32.h> 45#include <go32.h>
diff --git a/src/frame.c b/src/frame.c
index e4e3e3b4c3d..a62e2424980 100644
--- a/src/frame.c
+++ b/src/frame.c
@@ -23,7 +23,7 @@ Boston, MA 02111-1307, USA. */
23 23
24#include <stdio.h> 24#include <stdio.h>
25#include "lisp.h" 25#include "lisp.h"
26#include "charset.h" 26#include "character.h"
27#ifdef HAVE_X_WINDOWS 27#ifdef HAVE_X_WINDOWS
28#include "xterm.h" 28#include "xterm.h"
29#endif 29#endif
diff --git a/src/marker.c b/src/marker.c
index 475e5ffad6d..1456654bad1 100644
--- a/src/marker.c
+++ b/src/marker.c
@@ -22,7 +22,7 @@ Boston, MA 02111-1307, USA. */
22#include <config.h> 22#include <config.h>
23#include "lisp.h" 23#include "lisp.h"
24#include "buffer.h" 24#include "buffer.h"
25#include "charset.h" 25#include "character.h"
26 26
27/* Record one cached position found recently by 27/* Record one cached position found recently by
28 buf_charpos_to_bytepos or buf_bytepos_to_charpos. */ 28 buf_charpos_to_bytepos or buf_bytepos_to_charpos. */
diff --git a/src/minibuf.c b/src/minibuf.c
index cb3a25691ad..37b443d07d6 100644
--- a/src/minibuf.c
+++ b/src/minibuf.c
@@ -26,7 +26,7 @@ Boston, MA 02111-1307, USA. */
26#include "lisp.h" 26#include "lisp.h"
27#include "commands.h" 27#include "commands.h"
28#include "buffer.h" 28#include "buffer.h"
29#include "charset.h" 29#include "character.h"
30#include "dispextern.h" 30#include "dispextern.h"
31#include "keyboard.h" 31#include "keyboard.h"
32#include "frame.h" 32#include "frame.h"
diff --git a/src/msdos.c b/src/msdos.c
index c13ef2abb5c..f0f8e0e094b 100644
--- a/src/msdos.c
+++ b/src/msdos.c
@@ -55,7 +55,7 @@ Boston, MA 02111-1307, USA. */
55#include "dispextern.h" 55#include "dispextern.h"
56#include "dosfns.h" 56#include "dosfns.h"
57#include "termopts.h" 57#include "termopts.h"
58#include "charset.h" 58#include "character.h"
59#include "coding.h" 59#include "coding.h"
60#include "disptab.h" 60#include "disptab.h"
61#include "frame.h" 61#include "frame.h"
diff --git a/src/w16select.c b/src/w16select.c
index e1009fddfae..6365a2b2fc8 100644
--- a/src/w16select.c
+++ b/src/w16select.c
@@ -38,7 +38,7 @@ Boston, MA 02111-1307, USA. */
38#include "frame.h" /* Need this to get the X window of selected_frame */ 38#include "frame.h" /* Need this to get the X window of selected_frame */
39#include "blockinput.h" 39#include "blockinput.h"
40#include "buffer.h" 40#include "buffer.h"
41#include "charset.h" 41#include "character.h"
42#include "coding.h" 42#include "coding.h"
43 43
44/* If ever some function outside this file will need to call any 44/* If ever some function outside this file will need to call any
diff --git a/src/w32bdf.c b/src/w32bdf.c
index 5bb5ba72bba..536fde7b42c 100644
--- a/src/w32bdf.c
+++ b/src/w32bdf.c
@@ -28,7 +28,7 @@ Boston, MA 02111-1307, USA. */
28#endif 28#endif
29 29
30#include "lisp.h" 30#include "lisp.h"
31#include "charset.h" 31#include "character.h"
32#include "keyboard.h" 32#include "keyboard.h"
33#include "frame.h" 33#include "frame.h"
34#include "dispextern.h" 34#include "dispextern.h"
diff --git a/src/w32console.c b/src/w32console.c
index 490c1e10373..9d2a3e19a02 100644
--- a/src/w32console.c
+++ b/src/w32console.c
@@ -31,7 +31,7 @@ Boston, MA 02111-1307, USA.
31#include <string.h> 31#include <string.h>
32 32
33#include "lisp.h" 33#include "lisp.h"
34#include "charset.h" 34#include "character.h"
35#include "coding.h" 35#include "coding.h"
36#include "disptab.h" 36#include "disptab.h"
37#include "termhooks.h" 37#include "termhooks.h"