aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert2011-06-08 17:19:18 -0700
committerPaul Eggert2011-06-08 17:19:18 -0700
commite762cafe713e475886e7f1aed75b0aa213fe4c74 (patch)
treec12eaf62734402375d161dcc0f048db57b3c2371 /src
parentc6f072e7331307ee1f3233f6e162dd013b15a258 (diff)
downloademacs-e762cafe713e475886e7f1aed75b0aa213fe4c74.tar.gz
emacs-e762cafe713e475886e7f1aed75b0aa213fe4c74.zip
* data.c (Qcompiled_function): Now static.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/data.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 704b3e63b28..09a4a72a562 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12011-06-09 Paul Eggert <eggert@cs.ucla.edu>
2
3 * data.c (Qcompiled_function): Now static.
4
12011-06-08 Paul Eggert <eggert@cs.ucla.edu> 52011-06-08 Paul Eggert <eggert@cs.ucla.edu>
2 6
3 * window.c (window_body_lines): Now static. 7 * window.c (window_body_lines): Now static.
diff --git a/src/data.c b/src/data.c
index a41ffe7a1f6..85e6952efa5 100644
--- a/src/data.c
+++ b/src/data.c
@@ -89,8 +89,8 @@ Lisp_Object Qinteger;
89static Lisp_Object Qsymbol, Qstring, Qcons, Qmarker, Qoverlay; 89static Lisp_Object Qsymbol, Qstring, Qcons, Qmarker, Qoverlay;
90Lisp_Object Qwindow; 90Lisp_Object Qwindow;
91static Lisp_Object Qfloat, Qwindow_configuration; 91static Lisp_Object Qfloat, Qwindow_configuration;
92static Lisp_Object Qprocess; 92static Lisp_Object Qprocess, Qcompiled_function;
93Lisp_Object Qcompiled_function, Qbuffer, Qframe, Qvector; 93Lisp_Object Qbuffer, Qframe, Qvector;
94static Lisp_Object Qchar_table, Qbool_vector, Qhash_table; 94static Lisp_Object Qchar_table, Qbool_vector, Qhash_table;
95static Lisp_Object Qsubrp, Qmany, Qunevalled; 95static Lisp_Object Qsubrp, Qmany, Qunevalled;
96Lisp_Object Qfont_spec, Qfont_entity, Qfont_object; 96Lisp_Object Qfont_spec, Qfont_entity, Qfont_object;