(luna-send): Ditto.
(luna-call-next-method): Ditto.
* README.ja, README.en (load-path): Remove section.
(What's FLIM): Specify prerequisite version of Emacsen.
mailcap.el --- mailcap parser and utility
+ This library should work on:
+
+ Emacs 20.5 and up
+ XEmacs 20.4 and up
+
Installation
============
Notice that XEmacs package system requires XEmacs 21.0 or later.
-load-path (for Emacs or MULE)
-=============================
-
- If you are using Emacs or Mule, please add directory of FLIM to
- load-path. If you install by default setting, you can write
- subdirs.el for example:
-
- --------------------------------------------------------------------
- (normal-top-level-add-to-load-path '("apel" "flim"))
- --------------------------------------------------------------------
-
- If you are using XEmacs, there are no need of setting about
- load-path.
-
-
Bug reports
===========
mailcap.el --- mailcap \e$B$N2r@O=hM}Ey\e(B
+ \e$B0J2<$N4D6-$GF0:n$7$^$9!'\e(B
+
+ Emacs 20.5 \e$B0J9_\e(B
+ XEmacs 20.4 \e$B0J9_\e(B
+
\e$BF3F~\e(B (install)
==============
`PREFIX=...' \e$B$,>JN,$5$l$k$H!";XDj$5$l$?\e(B emacs \e$B%3%^%s%I$N%G%#%l%/%H%j!<\e(B
\e$BLZ$N@\F,<-$,;HMQ$5$l$^$9\e(B (\e$B$*$=$i$/\e(B /usr/local \e$B$G$9\e(B)\e$B!#\e(B
- \e$BNc$($P!"\e(BPREFIX=/usr/local \e$B$H\e(B Emacs 19.34 \e$B$,;XDj$5$l$l$P!"0J2<$N%G%#%l\e(B
+ \e$BNc$($P!"\e(BPREFIX=/usr/local \e$B$H\e(B Emacs 20.7 \e$B$,;XDj$5$l$l$P!"0J2<$N%G%#%l\e(B
\e$B%/%H%j!<LZ$,:n@.$5$l$^$9!#\e(B
/usr/local/share/emacs/site-lisp/flim/ --- FLIM
+ /usr/local/share/emacs/20.7/site-lisp/flim/ --- FLIM
Emacs Lisp \e$B%W%m%0%i%`$N$?$a$N\e(B lisp \e$B%G%#%l%/%H%j!<$r;XDj$9$k$3$H$,$G\e(B
\e$B$-$^$9!#Nc$($P!"\e(B:
\e$B$G$9!#\e(B
-load-path (Emacs \e$B$H\e(B MULE \e$BMQ\e(B)
-=============================
-
- Emacs \e$B$+\e(B Mule \e$B$r;H$C$F$$$k$J$i!"\e(BFLIM \e$B$N%G%#%l%/%H%j!<$r\e(B load-path \e$B$K\e(B
- \e$BDI2C$7$F$/$@$5$$!#=i4|@_Dj$N$^$^F3F~$7$?$J$i!"<!$N$h$&$K\e(B subdirs.el
- \e$B$r=q$/$3$H$,$G$-$^$9!#Nc\e(B:
-
- --------------------------------------------------------------------
- (normal-top-level-add-to-load-path '("apel" "flim"))
- --------------------------------------------------------------------
-
- XEmacs \e$B$r;H$C$F$$$k$J$i!"\e(Bload-path \e$B$r@_Dj$9$kI,MW$O$"$j$^$;$s!#\e(B
-
-
\e$B%P%0Js9p\e(B
========
(defun luna-class-find-functions (class service)
(let ((sym (luna-class-find-member class service)))
(if (fboundp sym)
- (cond ((eq (get sym 'luna-method-qualifier) ':before)
+ (cond ((eq (get sym 'luna-method-qualifier) :before)
(cons (symbol-function sym)
(luna-class-find-parents-functions class service)))
- ((eq (get sym 'luna-method-qualifier) ':after)
+ ((eq (get sym 'luna-method-qualifier) :after)
(nconc (luna-class-find-parents-functions class service)
(list (symbol-function sym))))
- ((eq (get sym 'luna-method-qualifier) ':around)
+ ((eq (get sym 'luna-method-qualifier) :around)
(cons sym (luna-class-find-parents-functions class service)))
(t
(list (symbol-function sym))))
luna-current-method-arguments))
(if (symbolp luna-current-method)
(not (eq (get luna-current-method
- 'luna-method-qualifier) ':around))
+ 'luna-method-qualifier) :around))
t))))
luna-previous-return-value))
luna-current-method-arguments))
(if (symbolp luna-current-method)
(not (eq (get luna-current-method
- 'luna-method-qualifier) ':around))
+ 'luna-method-qualifier) :around))
t))))
luna-previous-return-value))