]> git.eshelyaron.com Git - emacs.git/commitdiff
(interprogram-cut-function, interprogram-paste-function):
authorStefan Monnier <monnier@iro.umontreal.ca>
Fri, 9 Nov 2007 20:55:29 +0000 (20:55 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Fri, 9 Nov 2007 20:55:29 +0000 (20:55 +0000)
Don't make them frame-local any more.

lisp/ChangeLog
lisp/simple.el

index 5876fda424f0e20e6a304d61ab69dcdd83b0147b..91f99cf8545161cc72f6bcd9f31aa1e62a5d028b 100644 (file)
@@ -1,5 +1,8 @@
 2007-11-09  Stefan Monnier  <monnier@iro.umontreal.ca>
 
+       * simple.el (interprogram-cut-function, interprogram-paste-function):
+       Don't make them frame-local any more.
+
        * faces.el (x-create-frame-with-faces, tty-create-frame-with-faces):
        Don't set interprogram-(cut|paste)-function on each frame.
 
index f43635807d0543907d2de45e2793c6f9488458e8..572d7d689a7910f8d45bd84263838abae7cdb3a6 100644 (file)
@@ -2561,8 +2561,6 @@ the text which should be made available.
 The second, optional, argument PUSH, has the same meaning as the
 similar argument to `x-set-cut-buffer', which see.")
 
-(make-variable-frame-local 'interprogram-cut-function)
-
 (defvar interprogram-paste-function nil
   "Function to call to get text cut from other programs.
 
@@ -2588,8 +2586,6 @@ most recent string, the function should return nil.  If it is
 difficult to tell whether Emacs or some other program provided the
 current string, it is probably good enough to return nil if the string
 is equal (according to `string=') to the last text Emacs provided.")
-
-(make-variable-frame-local 'interprogram-paste-function)
 \f