+2000-02-11 Yoshiki Hayashi <yoshiki@xemacs.org>
+
+ * Makefile (MAKEINFO): New variable.
+
2000-02-09 Yoshiki Hayashi <yoshiki@xemacs.org>
* Makefile (distclean): New target.
TEXINFMT = $(VANILLA) -l texinfmt
TEXIF = -f texinfo-format-buffer -f save-buffer
+MAKEINFO = makeinfo
PREFIX = NONE
LISPDIR = NONE
PACKAGEDIR = NONE
info: emy.info
%.info: %.texi
- makeinfo -o $@ $<
+ $(MAKEINFO) -o $@ $<
texinfmt: emy.texi
$(EMACS) $(TEXINFMT) emy.texi $(TEXIF)
(save-excursion
(set-buffer (setq new-buf (get-buffer-create new-name)))
(erase-buffer)
- (insert-buffer-substring the-buf ph-end p-end)
+ ;; #### ???
+ (insert (buffer-substring-no-properties ph-end p-end the-buf))
(when (= ph-end p-beg)
(goto-char (point-min))
(insert ?\n))
(let ((current-entity
(if (and (eq (mime-entity-media-type entity) 'message)
(eq (mime-entity-media-subtype entity) 'rfc822))
- (mime-entity-children entity)
+ (car (mime-entity-children entity))
entity))
str)
(while (and current-entity
(require 'custom)
-(defconst mime-user-interface-product ["EMY" (1 13 2) "Better late than never"]
+(defconst mime-user-interface-product ["EMY" (1 13 3) "To err is human"]
"Product name, version number and code name of MIME-kernel package.")
(autoload 'mule-caesar-region "mule-caesar"