Function: zone-orig

zone-orig is a macro defined in zone.el.gz.

Signature

(zone-orig &rest BODY)

Documentation

Perform BODY in the original source buffer of the zone buffer.

Source Code

;; Defined in /usr/src/emacs/lisp/play/zone.el.gz
(defmacro zone-orig (&rest body)
  "Perform BODY in the original source buffer of the zone buffer."
  `(with-current-buffer (get 'zone 'orig-buffer)
     ,@body))