diff options
author | Dmitry Antipov <dmantipov@yandex.ru> | 2013-09-11 20:03:42 +0400 |
---|---|---|
committer | Dmitry Antipov <dmantipov@yandex.ru> | 2013-09-11 20:03:42 +0400 |
commit | 8d2db8be5bccf0d772e0690e612a1f499be4cb48 (patch) | |
tree | ab8b4a127b6b2a703265f5b0fe675c151dbefcb3 /src/nsterm.m | |
parent | 656bd483888ec1620eafdb4037f65af8fe0276ef (diff) | |
download | emacs-8d2db8be5bccf0d772e0690e612a1f499be4cb48.tar.gz |
* nsterm.m (syms_of_nsterm): Use Qns.
* w32fns.c (Fx_open_connection): Remove old '#if 0' code.
* w32term.c (w32_create_terminal, syms_of_w32term): Use Qw32.
* xfns.c (x_display_info_for_name, Fx_open_connection):
Remove old '#if 0' code.
(syms_of_xfns): Use Qx.
Diffstat (limited to 'src/nsterm.m')
-rw-r--r-- | src/nsterm.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nsterm.m b/src/nsterm.m index 38d76e9389c..59627a38087 100644 --- a/src/nsterm.m +++ b/src/nsterm.m @@ -7433,6 +7433,6 @@ variable `x-use-underline-position-properties', which is usually at the baseline level. The default value is nil. */); x_underline_at_descent_line = 0; - /* Tell emacs about this window system. */ - Fprovide (intern ("ns"), Qnil); + /* Tell Emacs about this window system. */ + Fprovide (Qns, Qnil); } |