aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJuanma Barranquero2011-04-15 03:26:32 +0200
committerJuanma Barranquero2011-04-15 03:26:32 +0200
commit7990b61a915a095639cc4986e8bce99c4d08326a (patch)
tree9149da10abae2d150e9d76952c85aaff34161fe3 /src
parent6c60eb9f2c4778c5fc07dd44b283edeb8583a3a0 (diff)
downloademacs-7990b61a915a095639cc4986e8bce99c4d08326a.tar.gz
emacs-7990b61a915a095639cc4986e8bce99c4d08326a.zip
src/font.c (Qopentype): Don't make static (used from w32uniscribe.c).
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/font.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index e3e6862f7e8..8ab1974ed58 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -3,6 +3,10 @@
3 * process.c (Qprocessp): Don't declare static. 3 * process.c (Qprocessp): Don't declare static.
4 * lisp.h (Qprocessp): Declare again. 4 * lisp.h (Qprocessp): Declare again.
5 5
62011-04-15 Juanma Barranquero <lekktu@gmail.com>
7
8 * font.c (Qopentype): Don't make static (used from w32uniscribe.c).
9
62011-04-14 Paul Eggert <eggert@cs.ucla.edu> 102011-04-14 Paul Eggert <eggert@cs.ucla.edu>
7 11
8 Improve C-level modularity by making more things 'static'. 12 Improve C-level modularity by making more things 'static'.
diff --git a/src/font.c b/src/font.c
index 7d8b94bddf2..7fe0815d80e 100644
--- a/src/font.c
+++ b/src/font.c
@@ -48,7 +48,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
48#include "nsterm.h" 48#include "nsterm.h"
49#endif /* HAVE_NS */ 49#endif /* HAVE_NS */
50 50
51static Lisp_Object Qopentype; 51Lisp_Object Qopentype;
52 52
53/* Important character set strings. */ 53/* Important character set strings. */
54Lisp_Object Qascii_0, Qiso8859_1, Qiso10646_1, Qunicode_bmp, Qunicode_sip; 54Lisp_Object Qascii_0, Qiso8859_1, Qiso10646_1, Qunicode_bmp, Qunicode_sip;