diff options
| author | Bozhidar Batsov | 2013-11-25 19:16:32 +0200 |
|---|---|---|
| committer | Bozhidar Batsov | 2013-11-25 19:16:32 +0200 |
| commit | 2bb3a748b362f9635bd406b151b89d7981a0bdaa (patch) | |
| tree | d391eb3677d9b65e22dfb5b0ce0f9c8e3e0f316d /lisp/comint.el | |
| parent | 001394351677736fafd9597a527bd900345fc7e7 (diff) | |
| download | emacs-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.el | 1 |
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. |