Sfoglia il codice sorgente

Prevent nested execution

master
10sr 5 anni fa
parent
commit
b0a03ed387
Firmato da: 10sr ID Chiave GPG: 7BEC428194130EB2
1 ha cambiato i file con 3 aggiunte e 0 eliminazioni
  1. +3
    -0
      emacs.el

+ 3
- 0
emacs.el Vedi File

@@ -1929,6 +1929,9 @@ Delete the text between BEG and END when DELETE is non-nil."
(defun awk-preview (beg end)
"Run awk and preview result."
(interactive "r")
(when (and awk-preview--env
(awk-preview--env-running-p awk-preview--env))
(error "AWK-Preview already running"))
(let ((e (make-awk-preview--env)))
(setf (awk-preview--env-point-beg e) beg)
(setf (awk-preview--env-point-end e) end)


Caricamento…
Annulla
Salva