diff src/xselect.c @ 112374:4d90cea362a3

Fix X11 compilation failure. * globals.h (struct emacs_globals): Document f_Vselection_alist. * xselect.c (Vselection_alist): Remove declaration, moving its documentation to globals.h. This fixes a compilation failure induced by the earlier change to globals.h today.
author Paul Eggert <eggert@cs.ucla.edu>
date Wed, 19 Jan 2011 15:32:42 -0800
parents 42e22c4f06b7
children 9de5a68b57e1
line wrap: on
line diff
--- a/src/xselect.c	Wed Jan 19 22:35:53 2011 +0000
+++ b/src/xselect.c	Wed Jan 19 15:32:42 2011 -0800
@@ -127,20 +127,6 @@
 /* Defined in keyboard.c.  */
 extern unsigned long last_event_timestamp;
 
-/* This is an association list whose elements are of the form
-     ( SELECTION-NAME SELECTION-VALUE SELECTION-TIMESTAMP FRAME)
-   SELECTION-NAME is a lisp symbol, whose name is the name of an X Atom.
-   SELECTION-VALUE is the value that emacs owns for that selection.
-     It may be any kind of Lisp object.
-   SELECTION-TIMESTAMP is the time at which emacs began owning this selection,
-     as a cons of two 16-bit numbers (making a 32 bit time.)
-   FRAME is the frame for which we made the selection.
-   If there is an entry in this alist, then it can be assumed that Emacs owns
-    that selection.
-   The only (eq) parts of this list that are visible from Lisp are the
-    selection-values.  */
-static Lisp_Object Vselection_alist;
-
 
 
 /* Define a queue to save up SELECTION_REQUEST_EVENT events for later
@@ -2700,4 +2686,3 @@
   Qforeign_selection = intern_c_string ("foreign-selection");
   staticpro (&Qforeign_selection);
 }
-