diff options
| author | Richard M. Stallman | 1995-05-07 17:39:40 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1995-05-07 17:39:40 +0000 |
| commit | f8758da5318b116fb90d1222e08f3db3b337969e (patch) | |
| tree | 80f009e22b8a7acb71c888b7b1b49c85e38f5408 /src | |
| parent | 7ca5423eb9e298926cddea9697197bf33f1fe208 (diff) | |
| download | emacs-f8758da5318b116fb90d1222e08f3db3b337969e.tar.gz emacs-f8758da5318b116fb90d1222e08f3db3b337969e.zip | |
(region_face, next_face_id): Make static.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xfaces.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xfaces.c b/src/xfaces.c index 04ed1b23095..1dfe6bb2292 100644 --- a/src/xfaces.c +++ b/src/xfaces.c | |||
| @@ -145,10 +145,10 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |||
| 145 | /* Definitions and declarations. */ | 145 | /* Definitions and declarations. */ |
| 146 | 146 | ||
| 147 | /* The number of face-id's in use (same for all frames). */ | 147 | /* The number of face-id's in use (same for all frames). */ |
| 148 | int next_face_id; | 148 | static int next_face_id; |
| 149 | 149 | ||
| 150 | /* The number of the face to use to indicate the region. */ | 150 | /* The number of the face to use to indicate the region. */ |
| 151 | int region_face; | 151 | static int region_face; |
| 152 | 152 | ||
| 153 | /* This is what appears in a slot in a face to signify that the face | 153 | /* This is what appears in a slot in a face to signify that the face |
| 154 | does not specify that display aspect. */ | 154 | does not specify that display aspect. */ |