Function: ex-cmd-is-mashed-with-args
ex-cmd-is-mashed-with-args is a byte-compiled function defined in
viper-ex.el.gz.
Signature
(ex-cmd-is-mashed-with-args CMD)
Source Code
;; Defined in /usr/src/emacs/lisp/emulation/viper-ex.el.gz
;; No code should touch anything in the alist entry! (other than the name,
;; "car entry", of course) This way, changing this data structure
;; requires changing only the following ex-cmd functions...
;; Returns cmd if the command may be jammed right up against its
;; arguments, nil if there must be a space.
;; examples of mashable commands: g// g!// v// s// sno// sm//
(defun ex-cmd-is-mashed-with-args (cmd)
(if (eq 'is-mashed (car (nthcdr 2 cmd))) cmd))