Go to the first, previous, next, last section, table of contents.

Lisp関数タイプ

Lisp 関数は、Emacs を拡張する際(主に)用いるものです。Lisp 関数は、その最初の要 素がシンボル lambda であるリストです。詳細に関してはチャプター 10 [関数]、ペー ジ 83 を参照して下さい。

      (defun foo (n) (print n))
           => foo
      (symbol-function 'foo)
           => (lambda (n) (print n))    ;インタープリットされた関数

Go to the first, previous, next, last section, table of contents.