diff options
author | Richard M. Stallman <rms@gnu.org> | 1995-05-07 17:39:40 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1995-05-07 17:39:40 +0000 |
commit | 48779fdc5133425fb15ef48d7a6b3574be9a98ea (patch) | |
tree | c4ea90cf1d711ae5a4e0b04796f20048550c8353 /src/xfaces.c | |
parent | 319e5bb94c16b92e8427cfaf68eb57ce7b95c36b (diff) | |
download | emacs-48779fdc5133425fb15ef48d7a6b3574be9a98ea.tar.gz |
(region_face, next_face_id): Make static.
Diffstat (limited to 'src/xfaces.c')
-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. */ /* Definitions and declarations. */ /* The number of face-id's in use (same for all frames). */ -int next_face_id; +static int next_face_id; /* The number of the face to use to indicate the region. */ -int region_face; +static int region_face; /* This is what appears in a slot in a face to signify that the face does not specify that display aspect. */ |