diff options
| author | Juanma Barranquero | 2011-04-15 03:26:32 +0200 |
|---|---|---|
| committer | Juanma Barranquero | 2011-04-15 03:26:32 +0200 |
| commit | 7990b61a915a095639cc4986e8bce99c4d08326a (patch) | |
| tree | 9149da10abae2d150e9d76952c85aaff34161fe3 /src | |
| parent | 6c60eb9f2c4778c5fc07dd44b283edeb8583a3a0 (diff) | |
| download | emacs-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/ChangeLog | 4 | ||||
| -rw-r--r-- | src/font.c | 2 |
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 | ||
| 6 | 2011-04-15 Juanma Barranquero <lekktu@gmail.com> | ||
| 7 | |||
| 8 | * font.c (Qopentype): Don't make static (used from w32uniscribe.c). | ||
| 9 | |||
| 6 | 2011-04-14 Paul Eggert <eggert@cs.ucla.edu> | 10 | 2011-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 | ||
| 51 | static Lisp_Object Qopentype; | 51 | Lisp_Object Qopentype; |
| 52 | 52 | ||
| 53 | /* Important character set strings. */ | 53 | /* Important character set strings. */ |
| 54 | Lisp_Object Qascii_0, Qiso8859_1, Qiso10646_1, Qunicode_bmp, Qunicode_sip; | 54 | Lisp_Object Qascii_0, Qiso8859_1, Qiso10646_1, Qunicode_bmp, Qunicode_sip; |