mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-06 03:40:56 -08:00
Fix link errors in the Mac OS build that were caused by variables being marked as static that should not have been.
This commit is contained in:
parent
b5b8e7de51
commit
cc39a9dba6
3 changed files with 16 additions and 5 deletions
|
|
@ -1,3 +1,10 @@
|
|||
2011-04-15 Ben Key <bkey76@gmail.com>
|
||||
|
||||
* keyboard.c (Qundefined): Don't declare static since it is
|
||||
used in nsfns.m.
|
||||
* xfaces.c (Qbold, Qexpanded, Qitalic, Qcondensed): Don't
|
||||
declare static since they are used in nsfont.m.
|
||||
|
||||
2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
|
||||
* process.c (Qprocessp): Don't declare static.
|
||||
|
|
|
|||
|
|
@ -246,7 +246,7 @@ Lisp_Object QPRIMARY;
|
|||
static Lisp_Object Qself_insert_command;
|
||||
static Lisp_Object Qforward_char;
|
||||
static Lisp_Object Qbackward_char;
|
||||
static Lisp_Object Qundefined;
|
||||
Lisp_Object Qundefined;
|
||||
static Lisp_Object Qtimer_event_handler;
|
||||
|
||||
/* read_key_sequence stores here the command definition of the
|
||||
|
|
|
|||
12
src/xfaces.c
12
src/xfaces.c
|
|
@ -317,11 +317,15 @@ static Lisp_Object QCfontset;
|
|||
/* Symbols used for attribute values. */
|
||||
|
||||
Lisp_Object Qnormal;
|
||||
static Lisp_Object Qbold, Qultra_light, Qextra_light, Qlight;
|
||||
Lisp_Object Qbold;
|
||||
static Lisp_Object Qultra_light, Qextra_light, Qlight;
|
||||
static Lisp_Object Qsemi_light, Qsemi_bold, Qextra_bold, Qultra_bold;
|
||||
static Lisp_Object Qoblique, Qitalic, Qreverse_oblique, Qreverse_italic;
|
||||
static Lisp_Object Qultra_condensed, Qextra_condensed, Qcondensed;
|
||||
static Lisp_Object Qsemi_condensed, Qsemi_expanded, Qexpanded, Qextra_expanded;
|
||||
static Lisp_Object Qoblique, Qreverse_oblique, Qreverse_italic;
|
||||
Lisp_Object Qitalic;
|
||||
static Lisp_Object Qultra_condensed, Qextra_condensed;
|
||||
Lisp_Object Qcondensed;
|
||||
static Lisp_Object Qsemi_condensed, Qsemi_expanded, Qextra_expanded;
|
||||
Lisp_Object Qexpanded;
|
||||
static Lisp_Object Qultra_expanded;
|
||||
static Lisp_Object Qreleased_button, Qpressed_button;
|
||||
static Lisp_Object QCstyle, QCcolor, QCline_width;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue