summaryrefslogtreecommitdiff
path: root/src/buffer.c
diff options
context:
space:
mode:
authorDan Nicolaescu <dann@ics.uci.edu>2010-07-29 21:42:38 -0700
committerDan Nicolaescu <dann@ics.uci.edu>2010-07-29 21:42:38 -0700
commit2c09a58f7e64af426e8484d510dc781e6da3e09d (patch)
tree087a41eec39a6c1f9d5ceac0a88eeec95de26054 /src/buffer.c
parent6f1c4158bee6cd97c2f88b08232bea0304dc4260 (diff)
downloademacs-2c09a58f7e64af426e8484d510dc781e6da3e09d.tar.gz
* src/buffer.c (Qwindow): Do not define, already defined in data.c.
(syms_of_buffer): Do not intern and staticpro Qwindow. (Bug#6760)
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/buffer.c b/src/buffer.c
index 9dd396e6c08..6f41b36b92f 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -162,7 +162,7 @@ Lisp_Object Qget_file_buffer;
Lisp_Object Qoverlayp;
-Lisp_Object Qpriority, Qwindow, Qevaporate, Qbefore_string, Qafter_string;
+Lisp_Object Qpriority, Qevaporate, Qbefore_string, Qafter_string;
Lisp_Object Qmodification_hooks;
Lisp_Object Qinsert_in_front_hooks;
@@ -5345,8 +5345,6 @@ syms_of_buffer (void)
staticpro (&Qget_file_buffer);
Qpriority = intern_c_string ("priority");
staticpro (&Qpriority);
- Qwindow = intern_c_string ("window");
- staticpro (&Qwindow);
Qbefore_string = intern_c_string ("before-string");
staticpro (&Qbefore_string);
Qafter_string = intern_c_string ("after-string");