Source of Nothingness - indent

* Menu

[[About:self:AboutPage.txt]] | [[Profile:file/southly/]] | [[まとめ:self:1163859357.txt]] | [[オリジナル:http://ninjinix.x0.com/rn/]] | [[xyzzy:lisp/]] | [[あんてな:listall]] | [[■:lisp]] | [[buzz:files/southly#buzz]]

* 2008-03-09 :

[[(ReadMore...) index.rb?1205059356.txt]]

* editorパッケージのbuiltin関数

以下で調べて652個
(let ((count 0))
  (do-symbols (sym (find-package "editor") (format t "~%count: ~d~%" count))
    (when (and (not (find-symbol (symbol-name sym) "lisp"))
               (fboundp sym)
               (si:*builtin-function-p (symbol-function sym)))
      (format t "~a~%" sym)
      (incf count))))
[[(ReadMore...) index.rb?1164371462.txt]]

* 2006-05-02

* memo :

[[(ReadMore...) index.rb?1142482471.txt]]

* memo :

[[(ReadMore...) index.rb?1142480331.txt]]

* memo :

キー操作でemacsのメニューにアクセス
<f10>           tmm-menubar

ついでなのでlisp-modeのキーバインド
C-x C-e         lisp-eval-last-sexp

C-c C-v         lisp-show-variable-documentation
C-c C-f         lisp-show-function-documentation
C-c C-d         lisp-describe-sym
C-c C-a         lisp-show-arglist
C-c C-k         lisp-compile-file
C-c C-l         lisp-load-file
C-c C-c         lisp-compile-defun
C-c C-r         lisp-eval-region
C-c C-e         lisp-eval-defun
C-c C-z         switch-to-lisp

ESC C-x         lisp-eval-defun
ESC C-q         indent-sexp

clispのarglistの表示はそっけなくて不便。
ほんとにarg0, arg1, ... なんて使ってるの?