Function: describe-current-input-method

describe-current-input-method is a byte-compiled function defined in mule-cmds.el.gz.

Signature

(describe-current-input-method)

Documentation

Describe the input method currently in use.

This is a subroutine for describe-input-method.

Source Code

;; Defined in /usr/src/emacs/lisp/international/mule-cmds.el.gz
(defun describe-current-input-method ()
  "Describe the input method currently in use.
This is a subroutine for `describe-input-method'."
  (if current-input-method
      (if (and (symbolp describe-current-input-method-function)
	       (fboundp describe-current-input-method-function))
	  (funcall describe-current-input-method-function)
	(message "No way to describe the current input method `%s'"
		 current-input-method)
	(ding))
    (error "No input method is activated now")))