Skip to content

Instantly share code, notes, and snippets.

@bowbow99
Created September 3, 2011 04:43
Show Gist options
  • Save bowbow99/1190576 to your computer and use it in GitHub Desktop.
Save bowbow99/1190576 to your computer and use it in GitHub Desktop.
#xyzzy labels をコンパイルすると泣ける
;; labels の lambda-list 内の init-form で同じ labels 式で定義したローカル
;; 関数を呼び出してると、コンパイルで挙動が変わる
(defun x () :global)
=> x
(defun test ()
(labels ((x () :local)
(test-1 (&optional (val (x))) val))
(test-1)))
=> test
(test)
=> :local
(compile 'test)
=> test
(test)
=> :global
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment