help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: doc-view.el and emacs 21


From: Xavier Maillard
Subject: Re: doc-view.el and emacs 21
Date: Sun, 2 Sep 2007 03:00:12 +0200
User-agent: Rmail in GNU Emacs 23.0.51.2 on GNU/Linux

Hi,

       process-put

   and

      process-get

   Any cure?

I think this is only from GNU Emacs 22.x. Just in case it could
work, here are the definitions (from subr.el)

;; process plist management

(defun process-get (process propname)
  "Return the value of PROCESS' PROPNAME property.
This is the last value stored with `(process-put PROCESS PROPNAME VALUE)'."
  (plist-get (process-plist process) propname))

(defun process-put (process propname value)
  "Change PROCESS' PROPNAME property to VALUE.
It can be retrieved with `(process-get PROCESS PROPNAME)'."
  (set-process-plist process
                     (plist-put (process-plist process) propname value)))

I hope this can help.


        Xavier
-- 
http://www.gnu.org
http://www.april.org
http://www.lolica.org




reply via email to

[Prev in Thread] Current Thread [Next in Thread]