+2000-10-10 08:44:13 ShengHuo ZHU <zsh@cs.rochester.edu>
+
+ * rfc2047.el (rfc2047-fold-region): "=?=" is not a break point.
+
2000-10-10 00:00:28 ShengHuo ZHU <zsh@cs.rochester.edu>
* webmail.el (webmail-init): Use mm-disable-multibyte-mule4.
(narrow-to-region b e)
(goto-char (point-min))
(let ((break nil)
+ (qword-break nil)
(bol (save-restriction
(widen)
(gnus-point-at-bol))))
(while (not (eobp))
- (when (and break (> (- (point) bol) 76))
- (goto-char break)
- (setq break nil)
+ (when (and (or break qword-break) (> (- (point) bol) 76))
+ (goto-char (or break qword-break))
+ (setq break nil
+ qword-break nil)
(insert "\n ")
(setq bol (1- (point)))
;; Don't break before the first non-LWSP characters.
((eq (char-after) ?\n)
(forward-char 1)
(setq bol (point)
- break nil)
+ break nil
+ qword-break nil)
(skip-chars-forward " \t")
(unless (or (eobp) (eq (char-after) ?\n))
(forward-char 1)))
(skip-chars-forward " \t")
(setq break (1- (point))))
((not break)
- (if (not (looking-at "=\\?"))
+ (if (not (looking-at "=\\?[^=]"))
(if (eq (char-after) ?=)
(forward-char 1)
(skip-chars-forward "^ \t\n\r="))
- (setq break (point))
+ (setq qword-break (point))
(skip-chars-forward "^ \t\n\r")))
(t
(skip-chars-forward "^ \t\n\r"))))
- (when (and break (> (- (point) bol) 76))
- (goto-char break)
- (setq break nil)
+ (when (and (or break qword-break) (> (- (point) bol) 76))
+ (goto-char (or break qword-break))
+ (setq break nil
+ qword-break nil)
(insert "\n ")
(setq bol (1- (point)))
;; Don't break before the first non-LWSP characters.
+2000-10-07 Dave Love <fx@gnu.org>
+
+ * doclicense.texi: New file.
+
2000-10-07 16:50:14 ShengHuo ZHU <zsh@cs.rochester.edu>
* Makefile.in: Use install-info.
INSTALL_DATA = @INSTALL_DATA@
SHELL = /bin/sh
PAPERTYPE=a4
+INFO_DEPS=gnus message emacs-mime
+INFO_DEPS_JA=gnus-ja message-ja
+INFO_DEPS_INFO=gnus.info message.info emacs-mime.info
+INFO_DEPS_JA_INFO=gnus-ja.info message-ja.info
-all: gnus message emacs-mime
-all-info: gnus.info message.info emacs-mime.info
+all: $(INFO_DEPS)
+all-info: $(INFO_DEPS_INFO)
gnus.info: gnus.texi gnus-faq.texi
message.info: message.texi
emacs-mime.info: emacs-mime.texi
-ja: gnus-ja message-ja
-ja-info: gnus-ja.info message-ja.info
+ja: $(INFO_DEPS_JA)
+ja-info: $(INFO_DEPS_JA_INFO)
gnus-ja.info: gnus-ja.texi gnus-faq-ja.texi
message-ja.info: message-ja.texi
$(PDFLATEX) refcard.tex
clean:
- rm -f gnus.*.bak *.ky *.cp *.fn *.cps *.kys *.log *.aux *.dvi *.vr \
- *.pdf *.tp *.toc *.pg gnus.latexi *.aux *.[cgk]idx \
- gnus.ilg gnus.ind gnus.[cgk]ind gnus.idx \
- gnustmp.texi *.tmplatexi gnus.tmplatexi1 texput.log *.orig *.rej \
- gnus.latexi*~* tmp/*.ps xface.tex picons.tex smiley.tex *.latexi \
- gnus.info* gnus-ja.info* message.info* message-ja.info* \
- emacs-mime.info
- rm -f *.orig *.rej *.elc *~ gnus gnus-[0-9] gnus-[0-9][0-9]
- rm -f message message-[0-9]
- rm -f emacs-mime
- rm -f gnus-ja gnus-ja-[0-9] gnus-ja-[0-9][0-9]
- rm -f message-ja message-ja-[0-9]
+ rm -f *.orig *.rej *.elc *~ gnus-[0-9] gnus-[0-9][0-9]
+ rm -f message-[0-9]
+ rm -f $(INFO_DEPS)
+ rm -f gnus-ja-[0-9] gnus-ja-[0-9][0-9]
+ rm -f message-ja-[0-9]
+ rm -f $(INFO_DEPS_JA)
+ rm -f gnus.info-[0-9] gnus.info-[0-9][0-9]
+ rm -f message.info-[0-9]
+ rm -f $(INFO_DEPS_INFO)
+ rm -f gnus-ja.info-[0-9] gnus-ja.info-[0-9][0-9]
+ rm -f message-ja.info-[0-9]
+ rm -f $(INFO_DEPS_JA_INFO)
makeinfo:
makeinfo -o gnus gnus.texi
distclean: clean
rm -f Makefile
-install:
+install: $(INFO_DEPS)
$(SHELL) $(top_srcdir)/mkinstalldirs $(infodir)
- @for file in gnus message emacs-mime gnus-ja message-ja; do \
- for ifile in `echo $$file $$file-[0-9] $$file-[0-9][0-9]`; do \
- if test -f $$ifile; then \
- echo " $(INSTALL_DATA) $$ifile $(infodir)/$$ifile"; \
- $(INSTALL_DATA) $$ifile $(infodir)/$$ifile; \
+ @list='$(INFO_DEPS)'; \
+ for file in $$list; do \
+ d=$(srcdir); \
+ for ifile in `CDPATH=: && cd $$d && echo $$file $$file-[0-9] $$file-[0-9][0-9]`; do \
+ if test -f $$d/$$ifile; then \
+ echo " $(INSTALL_DATA) $$d/$$ifile $(infodir)/$$ifile"; \
+ $(INSTALL_DATA) $$d/$$ifile $(infodir)/$$ifile; \
else : ; fi; \
done; \
done
+ @if $(SHELL) -c 'install-info --version | sed 1q | fgrep -s -v -i debian' >/dev/null 2>&1; then \
+ list='$(INFO_DEPS)'; \
+ for file in $$list; do \
+ echo " install-info --info-dir=$(infodir) $(infodir)/$$file";\
+ install-info --info-dir=$(infodir) $(infodir)/$$file || :;\
+ done; \
+ else : ; fi
+
+install-ja: $(INFO_DEPS_JA)
+ $(MAKE) INFO_DEPS='$(INFO_DEPS_JA)' install
+
+install-info: $(INFO_DEPS_INFO)
+ $(MAKE) INFO_DEPS='$(INFO_DEPS_INFO)' install
+
+install-ja-info: $(INFO_DEPS_JA_INFO)
+ $(MAKE) INFO_DEPS='$(INFO_DEPS_JA_INFO)' install
tmps:
if [ ! -e tmp ]; then mkdir tmp; fi
\e$B$3$NJ8=q$r!"%U%j!<%=%U%H%&%'%":bCDH/9T$N\e(B GNU \e$B%U%j!<J8=qMxMQ5vBz7@Ls=q\e(B
\e$BBh\e(B 1.1 \e$BHG$^$?$O$=$l0J9_$NHG$,Dj$a$k>r7o$N2<$GJ#@=!"G[I[!"$"$k$$$OJQ99$9\e(B
-\e$B$k$3$H$r5v2D$9$k!#JQ99IT2DItJ,$O;XDj$7$J$$!#!V\e(BA GNU Manual\e$B!W$OI=I=;f%F\e(B
-\e$B%-%9%H!"0J2<$N\e(B (a) \e$B$ON"I=;f%F%-%9%H$G$"$k!#$3$NMxMQ5vBz7@Ls=q$NJ#<L$O\e(B
-\e$B!V\e(BEmacs manual\e$B!W$N!V\e(BGNU \e$B%U%j!<J8=qMxMQ5vBz7@Ls=q!W$H$$$&>O$K4^$^$l$F$$$k!#\e(B
+\e$B$k$3$H$r5v2D$7$^$9!#JQ99IT2DItJ,$O;XDj$7$^$;$s!#!V\e(BA GNU Manual\e$B!W$OI=I=;f\e(B
+\e$B%F%-%9%H!"0J2<$N\e(B (a) \e$B$ON"I=;f%F%-%9%H$G$9!#$3$NMxMQ5vBz7@Ls=q$NJ#<L$O\e(B
+\e$B!V\e(BEmacs manual\e$B!W$N!V\e(BGNU \e$B%U%j!<J8=qMxMQ5vBz7@Ls=q!W$H$$$&>O$K4^$^$l$F$$$^\e(B
+\e$B$9!#\e(B
(a) The FSF's Back-Cover Text is: ``You have freedom to copy and modify
this GNU Manual, like GNU software. Copies published by the Free
Software Foundation raise funds for GNU development.''
(a) FSF \e$B$NN"I=;f%F%-%9%H\e(B:\e$B!V$"$J$?$K$O$3$N\e(B GNU Manual \e$B$r\e(B GNU \e$B%=%U%H%&%'%"\e(B
-\e$B$N$h$&$KJ#@=$7$?$jJQ99$9$k<+M3$,$"$k!#J#@=$O%U%j!<%=%U%H%&%'%":bCD$K$h$C\e(B
-\e$B$F=PHG$5$l$?!#\e(B(\e$B%U%j!<%=%U%H%&%'%":bCD$O\e(B) GNU \e$B$N3+H/$N$?$a$KI,MW$J;q6b$r\e(B
-\e$B=8$a$F$$$k!#!W\e(B
+\e$B$N$h$&$KJ#@=$7$?$jJQ99$9$k<+M3$,$"$j$^$9!#J#@=$O%U%j!<%=%U%H%&%'%":bCD$K\e(B
+\e$B$h$C$F=PHG$5$l$^$7$?!#\e(B(\e$B%U%j!<%=%U%H%&%'%":bCD$O\e(B) GNU \e$B$N3+H/$N$?$a$KI,MW\e(B
+\e$B$J;q6b$r=8$a$F$$$^$9!#!W\e(B
This document is part of a collection distributed under the GNU Free
Documentation License. If you want to distribute this document
\e$B$3$NJ8=q$r!"%U%j!<%=%U%H%&%'%":bCDH/9T$N\e(B GNU \e$B%U%j!<J8=qMxMQ5vBz7@Ls=q\e(B
\e$BBh\e(B 1.1 \e$BHG$^$?$O$=$l0J9_$NHG$,Dj$a$k>r7o$N2<$GJ#@=!"G[I[!"$"$k$$$OJQ99$9\e(B
-\e$B$k$3$H$r5v2D$9$k!#JQ99IT2DItJ,$O;XDj$7$J$$!#!V\e(BA GNU Manual\e$B!W$OI=I=;f%F\e(B
-\e$B%-%9%H!"0J2<$N\e(B (a) \e$B$ON"I=;f%F%-%9%H$G$"$k!#$3$NMxMQ5vBz7@Ls=q$NJ#<L$O\e(B
-\e$B!V\e(BEmacs manual\e$B!W$N!V\e(BGNU \e$B%U%j!<J8=qMxMQ5vBz7@Ls=q!W$H$$$&>O$K4^$^$l$F$$$k!#\e(B
+\e$B$k$3$H$r5v2D$7$^$9!#JQ99IT2DItJ,$O;XDj$7$^$;$s!#!V\e(BA GNU Manual\e$B!W$OI=I=;f\e(B
+\e$B%F%-%9%H!"0J2<$N\e(B (a) \e$B$ON"I=;f%F%-%9%H$G$9!#$3$NMxMQ5vBz7@Ls=q$NJ#<L$O\e(B
+\e$B!V\e(BEmacs manual\e$B!W$N!V\e(BGNU \e$B%U%j!<J8=qMxMQ5vBz7@Ls=q!W$H$$$&>O$K4^$^$l$F$$$^\e(B
+\e$B$9!#\e(B
(a) The FSF's Back-Cover Text is: ``You have freedom to copy and modify
this GNU Manual, like GNU software. Copies published by the Free
Software Foundation raise funds for GNU development.''
(a) FSF \e$B$NN"I=;f%F%-%9%H\e(B:\e$B!V$"$J$?$K$O$3$N\e(B GNU Manual \e$B$r\e(B GNU \e$B%=%U%H%&%'%"\e(B
-\e$B$N$h$&$KJ#@=$7$?$jJQ99$9$k<+M3$,$"$k!#J#@=$O%U%j!<%=%U%H%&%'%":bCD$K$h$C\e(B
-\e$B$F=PHG$5$l$?!#\e(B(\e$B%U%j!<%=%U%H%&%'%":bCD$O\e(B) GNU \e$B$N3+H/$N$?$a$KI,MW$J;q6b$r\e(B
-\e$B=8$a$F$$$k!#!W\e(B
+\e$B$N$h$&$KJ#@=$7$?$jJQ99$9$k<+M3$,$"$j$^$9!#J#@=$O%U%j!<%=%U%H%&%'%":bCD$K\e(B
+\e$B$h$C$F=PHG$5$l$^$7$?!#\e(B(\e$B%U%j!<%=%U%H%&%'%":bCD$O\e(B) GNU \e$B$N3+H/$N$?$a$KI,MW\e(B
+\e$B$J;q6b$r=8$a$F$$$^$9!#!W\e(B
This document is part of a collection distributed under the GNU Free
Documentation License. If you want to distribute this document
\e$B$3$NJ8=q$r!"%U%j!<%=%U%H%&%'%":bCDH/9T$N\e(B GNU \e$B%U%j!<J8=qMxMQ5vBz7@Ls=q\e(B
\e$BBh\e(B 1.1 \e$BHG$^$?$O$=$l0J9_$NHG$,Dj$a$k>r7o$N2<$GJ#@=!"G[I[!"$"$k$$$OJQ99$9\e(B
-\e$B$k$3$H$r5v2D$9$k!#JQ99IT2DItJ,$O;XDj$7$J$$!#!V\e(BA GNU Manual\e$B!W$OI=I=;f%F\e(B
-\e$B%-%9%H!"0J2<$N\e(B (a) \e$B$ON"I=;f%F%-%9%H$G$"$k!#$3$NMxMQ5vBz7@Ls=q$NJ#<L$O\e(B
-\e$B!V\e(BEmacs manual\e$B!W$N!V\e(BGNU \e$B%U%j!<J8=qMxMQ5vBz7@Ls=q!W$H$$$&>O$K4^$^$l$F$$$k!#\e(B
+\e$B$k$3$H$r5v2D$7$^$9!#JQ99IT2DItJ,$O;XDj$7$^$;$s!#!V\e(BA GNU Manual\e$B!W$OI=I=;f\e(B
+\e$B%F%-%9%H!"0J2<$N\e(B (a) \e$B$ON"I=;f%F%-%9%H$G$9!#$3$NMxMQ5vBz7@Ls=q$NJ#<L$O\e(B
+\e$B!V\e(BEmacs manual\e$B!W$N!V\e(BGNU \e$B%U%j!<J8=qMxMQ5vBz7@Ls=q!W$H$$$&>O$K4^$^$l$F$$$^\e(B
+\e$B$9!#\e(B
(a) The FSF's Back-Cover Text is: ``You have freedom to copy and modify
this GNU Manual, like GNU software. Copies published by the Free
Software Foundation raise funds for GNU development.''
(a) FSF \e$B$NN"I=;f%F%-%9%H\e(B:\e$B!V$"$J$?$K$O$3$N\e(B GNU Manual \e$B$r\e(B GNU \e$B%=%U%H%&%'%"\e(B
-\e$B$N$h$&$KJ#@=$7$?$jJQ99$9$k<+M3$,$"$k!#J#@=$O%U%j!<%=%U%H%&%'%":bCD$K$h$C\e(B
-\e$B$F=PHG$5$l$?!#\e(B(\e$B%U%j!<%=%U%H%&%'%":bCD$O\e(B) GNU \e$B$N3+H/$N$?$a$KI,MW$J;q6b$r\e(B
-\e$B=8$a$F$$$k!#!W\e(B
+\e$B$N$h$&$KJ#@=$7$?$jJQ99$9$k<+M3$,$"$j$^$9!#J#@=$O%U%j!<%=%U%H%&%'%":bCD$K\e(B
+\e$B$h$C$F=PHG$5$l$^$7$?!#\e(B(\e$B%U%j!<%=%U%H%&%'%":bCD$O\e(B) GNU \e$B$N3+H/$N$?$a$KI,MW\e(B
+\e$B$J;q6b$r=8$a$F$$$^$9!#!W\e(B
This document is part of a collection distributed under the GNU Free
Documentation License. If you want to distribute this document
\e$B$3$NJ8=q$r!"%U%j!<%=%U%H%&%'%":bCDH/9T$N\e(B GNU \e$B%U%j!<J8=qMxMQ5vBz7@Ls=q\e(B
\e$BBh\e(B 1.1 \e$BHG$^$?$O$=$l0J9_$NHG$,Dj$a$k>r7o$N2<$GJ#@=!"G[I[!"$"$k$$$OJQ99$9\e(B
-\e$B$k$3$H$r5v2D$9$k!#JQ99IT2DItJ,$O;XDj$7$J$$!#!V\e(BA GNU Manual\e$B!W$OI=I=;f%F\e(B
-\e$B%-%9%H!"0J2<$N\e(B (a) \e$B$ON"I=;f%F%-%9%H$G$"$k!#$3$NMxMQ5vBz7@Ls=q$NJ#<L$O\e(B
-\e$B!V\e(BGNU \e$B%U%j!<J8=qMxMQ5vBz7@Ls=q!W$H$$$&>O$K4^$^$l$F$$$k!#\e(B
+\e$B$k$3$H$r5v2D$7$^$9!#JQ99IT2DItJ,$O;XDj$7$^$;$s!#!V\e(BA GNU Manual\e$B!W$OI=I=;f\e(B
+\e$B%F%-%9%H!"0J2<$N\e(B (a) \e$B$ON"I=;f%F%-%9%H$G$9!#$3$NMxMQ5vBz7@Ls=q$NJ#<L$O\e(B
+\e$B!V\e(BEmacs manual\e$B!W$N!V\e(BGNU \e$B%U%j!<J8=qMxMQ5vBz7@Ls=q!W$H$$$&>O$K4^$^$l$F$$$^\e(B
+\e$B$9!#\e(B
(a) The FSF's Back-Cover Text is: ``You have freedom to copy and modify
this GNU Manual, like GNU software. Copies published by the Free
Software Foundation raise funds for GNU development.''
(a) FSF \e$B$NN"I=;f%F%-%9%H\e(B:\e$B!V$"$J$?$K$O$3$N\e(B GNU Manual \e$B$r\e(B GNU \e$B%=%U%H%&%'%"\e(B
-\e$B$N$h$&$KJ#@=$7$?$jJQ99$9$k<+M3$,$"$k!#J#@=$O%U%j!<%=%U%H%&%'%":bCD$K$h$C\e(B
-\e$B$F=PHG$5$l$?!#\e(B(\e$B%U%j!<%=%U%H%&%'%":bCD$O\e(B) GNU \e$B$N3+H/$N$?$a$KI,MW$J;q6b$r\e(B
-\e$B=8$a$F$$$k!#!W\e(B
+\e$B$N$h$&$KJ#@=$7$?$jJQ99$9$k<+M3$,$"$j$^$9!#J#@=$O%U%j!<%=%U%H%&%'%":bCD$K\e(B
+\e$B$h$C$F=PHG$5$l$^$7$?!#\e(B(\e$B%U%j!<%=%U%H%&%'%":bCD$O\e(B) GNU \e$B$N3+H/$N$?$a$KI,MW\e(B
+\e$B$J;q6b$r=8$a$F$$$^$9!#!W\e(B
This document is part of a collection distributed under the GNU Free
Documentation License. If you want to distribute this document
\e$B$3$NJ8=q$r!"%U%j!<%=%U%H%&%'%":bCDH/9T$N\e(B GNU \e$B%U%j!<J8=qMxMQ5vBz7@Ls=q\e(B
\e$BBh\e(B 1.1 \e$BHG$^$?$O$=$l0J9_$NHG$,Dj$a$k>r7o$N2<$GJ#@=!"G[I[!"$"$k$$$OJQ99$9\e(B
-\e$B$k$3$H$r5v2D$9$k!#JQ99IT2DItJ,$O;XDj$7$J$$!#!V\e(BA GNU Manual\e$B!W$OI=I=;f%F\e(B
-\e$B%-%9%H!"0J2<$N\e(B (a) \e$B$ON"I=;f%F%-%9%H$G$"$k!#$3$NMxMQ5vBz7@Ls=q$NJ#<L$O\e(B
-\e$B!V\e(BEmacs manual\e$B!W$N!V\e(BGNU \e$B%U%j!<J8=qMxMQ5vBz7@Ls=q!W$H$$$&>O$K4^$^$l$F$$$k!#\e(B
+\e$B$k$3$H$r5v2D$7$^$9!#JQ99IT2DItJ,$O;XDj$7$^$;$s!#!V\e(BA GNU Manual\e$B!W$OI=I=;f\e(B
+\e$B%F%-%9%H!"0J2<$N\e(B (a) \e$B$ON"I=;f%F%-%9%H$G$9!#$3$NMxMQ5vBz7@Ls=q$NJ#<L$O\e(B
+\e$B!V\e(BEmacs manual\e$B!W$N!V\e(BGNU \e$B%U%j!<J8=qMxMQ5vBz7@Ls=q!W$H$$$&>O$K4^$^$l$F$$$^\e(B
+\e$B$9!#\e(B
(a) The FSF's Back-Cover Text is: ``You have freedom to copy and modify
this GNU Manual, like GNU software. Copies published by the Free
Software Foundation raise funds for GNU development.''
(a) FSF \e$B$NN"I=;f%F%-%9%H\e(B:\e$B!V$"$J$?$K$O$3$N\e(B GNU Manual \e$B$r\e(B GNU \e$B%=%U%H%&%'%"\e(B
-\e$B$N$h$&$KJ#@=$7$?$jJQ99$9$k<+M3$,$"$k!#J#@=$O%U%j!<%=%U%H%&%'%":bCD$K$h$C\e(B
-\e$B$F=PHG$5$l$?!#\e(B(\e$B%U%j!<%=%U%H%&%'%":bCD$O\e(B) GNU \e$B$N3+H/$N$?$a$KI,MW$J;q6b$r\e(B
-\e$B=8$a$F$$$k!#!W\e(B
+\e$B$N$h$&$KJ#@=$7$?$jJQ99$9$k<+M3$,$"$j$^$9!#J#@=$O%U%j!<%=%U%H%&%'%":bCD$K\e(B
+\e$B$h$C$F=PHG$5$l$^$7$?!#\e(B(\e$B%U%j!<%=%U%H%&%'%":bCD$O\e(B) GNU \e$B$N3+H/$N$?$a$KI,MW\e(B
+\e$B$J;q6b$r=8$a$F$$$^$9!#!W\e(B
This document is part of a collection distributed under the GNU Free
Documentation License. If you want to distribute this document