diff options
author | Jason Rumney <jasonr@gnu.org> | 2007-06-11 22:08:06 +0000 |
---|---|---|
committer | Jason Rumney <jasonr@gnu.org> | 2007-06-11 22:08:06 +0000 |
commit | 9c9d6d8b4c680e7070ec230f54ab7c77931846a1 (patch) | |
tree | 86be75d3997521509a17fdcc38da3f515ae8ded7 /src/w32select.c | |
parent | 5112869221ca68e1afd0d893b8f835af06b96cb1 (diff) | |
download | emacs-9c9d6d8b4c680e7070ec230f54ab7c77931846a1.tar.gz |
(syms_of_w32select): Use DEFSYM macro.
Diffstat (limited to 'src/w32select.c')
-rw-r--r-- | src/w32select.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/w32select.c b/src/w32select.c index 889e09a4a6c..31d0a0d88cc 100644 --- a/src/w32select.c +++ b/src/w32select.c @@ -1089,13 +1089,13 @@ next communication only. After the communication, this variable is set to nil. */); Vnext_selection_coding_system = Qnil; - QCLIPBOARD = intern ("CLIPBOARD"); staticpro (&QCLIPBOARD); + DEFSYM (QCLIPBOARD, "CLIPBOARD"); cfg_coding_system = Qnil; staticpro (&cfg_coding_system); current_text = Qnil; staticpro (¤t_text); current_coding_system = Qnil; staticpro (¤t_coding_system); - QUNICODE = intern ("utf-16le-dos"); staticpro (&QUNICODE); + DEFSYM (QUNICODE, "utf-16le-dos"); QANSICP = Qnil; staticpro (&QANSICP); QOEMCP = Qnil; staticpro (&QOEMCP); } |