aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/comint.el
diff options
context:
space:
mode:
authorBozhidar Batsov2013-11-25 19:16:32 +0200
committerBozhidar Batsov2013-11-25 19:16:32 +0200
commit2bb3a748b362f9635bd406b151b89d7981a0bdaa (patch)
treed391eb3677d9b65e22dfb5b0ce0f9c8e3e0f316d /lisp/comint.el
parent001394351677736fafd9597a527bd900345fc7e7 (diff)
downloademacs-2bb3a748b362f9635bd406b151b89d7981a0bdaa.tar.gz
emacs-2bb3a748b362f9635bd406b151b89d7981a0bdaa.zip
* lisp/emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
Mark as obsolete and replace it with a symbol property. (byte-compile-form): Use new 'interactive-only property. * lisp/comint.el, lisp/files.el, lisp/replace.el, lisp/simple.el: Apply new 'interactive-only properly.
Diffstat (limited to 'lisp/comint.el')
-rw-r--r--lisp/comint.el1
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/comint.el b/lisp/comint.el
index 8e1b2105de3..3aff3137d74 100644
--- a/lisp/comint.el
+++ b/lisp/comint.el
@@ -752,6 +752,7 @@ See `make-comint' and `comint-exec'."
752 (let ((name (file-name-nondirectory program))) 752 (let ((name (file-name-nondirectory program)))
753 (switch-to-buffer (make-comint name program)) 753 (switch-to-buffer (make-comint name program))
754 (run-hooks (intern-soft (concat "comint-" name "-hook"))))) 754 (run-hooks (intern-soft (concat "comint-" name "-hook")))))
755(put 'comint-run 'interactive-only "Use `make-comint' instead")
755 756
756(defun comint-exec (buffer name command startfile switches) 757(defun comint-exec (buffer name command startfile switches)
757 "Start up a process named NAME in buffer BUFFER for Comint modes. 758 "Start up a process named NAME in buffer BUFFER for Comint modes.