Created
March 3, 2012 13:05
-
-
Save miyamuko/1965967 to your computer and use it in GitHub Desktop.
ASDF 2.20 を #xyzzy に移植するのに足りないシンボル
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; このリストの作り方 | |
;; | |
;; 1. 以下を実行して xyzzy に足りないシンボルに特別な色をつける | |
;; #xyzzy にはないシンボルと ansify にあるシンボルに色をつけるためのキーワードファイルの生成 — Gist | |
;; https://gist.github.com/1305799 | |
;; 2. buf2html で HTML に変換 | |
;; 3. 以下の関数で探す | |
;; | |
;; (defun find-missing-function () | |
;; (set-buffer (find-buffer "*buf2html: HTML*")) | |
;; (let (r) | |
;; (goto-char (point-min)) | |
;; (while (scan-buffer "<span class=\"fg1 bg0\">\\(.*?\\)</span>" :regexp t :tail t) | |
;; (push (intern (match-string 1)) r)) | |
;; (remove-duplicates (sort r #'string<)))) | |
;; | |
;; 4. 手でカテゴリに分ける | |
;; 5. なんか原始的w | |
call-next-method | |
change-class | |
class | |
class-name | |
class-of | |
defclass | |
defgeneric | |
defmethod | |
find-class | |
make-instance | |
reinitialize-instance | |
remove-method | |
shared-initialize | |
slot-boundp | |
slot-value | |
update-instance-for-redefined-class | |
dynamic-extent | |
ignorable | |
ignore | |
notinline | |
ftype | |
boolean | |
unsigned-byte | |
lisp-implementation-type | |
lisp-implementation-version | |
machine-type | |
*compile-file-pathname* | |
ensure-directories-exist | |
file-write-date | |
probe-file | |
read-byte | |
read-sequence | |
*default-pathname-defaults* | |
logical-pathname | |
make-pathname | |
parse-namestring | |
pathname-version | |
pathnamep | |
translate-logical-pathname | |
translate-pathname | |
print-object | |
search | |
with-compilation-unit | |
with-standard-io-syntax |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment