From: Paul Eggert Date: Thu, 9 Jun 2011 00:19:18 +0000 (-0700) Subject: * data.c (Qcompiled_function): Now static. X-Git-Tag: emacs-pretest-24.0.90~104^2~548^2~57 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e762cafe713e475886e7f1aed75b0aa213fe4c74;p=emacs.git * data.c (Qcompiled_function): Now static. --- diff --git a/src/ChangeLog b/src/ChangeLog index 704b3e63b28..09a4a72a562 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2011-06-09 Paul Eggert + + * data.c (Qcompiled_function): Now static. + 2011-06-08 Paul Eggert * 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; static Lisp_Object Qsymbol, Qstring, Qcons, Qmarker, Qoverlay; Lisp_Object Qwindow; static Lisp_Object Qfloat, Qwindow_configuration; -static Lisp_Object Qprocess; -Lisp_Object Qcompiled_function, Qbuffer, Qframe, Qvector; +static Lisp_Object Qprocess, Qcompiled_function; +Lisp_Object Qbuffer, Qframe, Qvector; static Lisp_Object Qchar_table, Qbool_vector, Qhash_table; static Lisp_Object Qsubrp, Qmany, Qunevalled; Lisp_Object Qfont_spec, Qfont_entity, Qfont_object;