The first one is for locally installed packages for a particular Emacs version; the second is for locally installed packages meant for use with all installed Emacs versions.
There are several reasons why a Lisp package that works well in one Emacs version can cause trouble in another. Sometimes packages need updating for incompatible changes in Emacs; sometimes they depend on undocumented internal Emacs data that can change without notice; sometimes a newer Emacs version incorporates a version of the package, and should be used only with that version.
default-truncate-lines's value is nil Documentation: Default value of `truncate-lines' for buffers that do not override it. This is the same as (default-value 'truncate-lines).
>> Error: (file-error "Opening input file" "no such file or directory" "d:/hoge/elisp-manual-19jp-2.4.2.0/index-jp.texi") >> point at >> >> @c Print the tables of contents >> @summarycontents >> @contents >> @c That's all >> @bye >> >> These words preve make: *** [elisp-jp] Error 1
DEFUN ("sort", Fsort, Ssort, 2, 2, 0, doc: /* Sort LIST, stably, comparing elements using PREDICATE. Returns the sorted list. LIST is modified by side effects. PREDICATE is called with two elements of LIST, and should return t if the first element is "less" than the second. */) (list, predicate) Lisp_Object list, predicate; { Lisp_Object front, back; register Lisp_Object len, tem; struct gcpro gcpro1, gcpro2; register int length;
front = list; len = Flength (list); length = XINT (len); if (length < 2) return list;
XSETINT (len, (length / 2) - 1); tem = Fnthcdr (len, list); back = Fcdr (tem); Fsetcdr (tem, Qnil);
GCPRO2 (front, back); front = Fsort (front, predicate); back = Fsort (back, predicate); UNGCPRO; return merge (front, back, predicate); }
>>570 emcwsƒpƒbƒ`‚𓖂ĂĂ ‚è‚Ü‚·B --with-wnn use Wnn library to input Japanese or Chinese --with-wnn-includes=DIR search for WNN header files in DIR --with-wnn-libraries=DIR search for WNN libraries in DIR
cvs ‚Å load-path ‚ª’Ê‚Á‚½‚Æ‚±‚ë‚ÉŽæ‚Á‚Ä‚‚邿‚¤‚É‚µ‚ÄC ‚»‚±‚ʼn½‚àl‚¦‚¸‚É make (or make elc) ‚¾‚¯‚â‚Á‚Æ‚¯‚΂¢‚¢‚ñ‚¶‚á‚È‚¢‚ÌH make install ‚·‚邯‚¢‚ë‚ñ‚ȂƂ±‚ë‚ɃCƒ“ƒXƒg[ƒ‹‚³‚ê‚Ä‚µ‚Ü‚¤‚Ì‚ÅC ‘S•” home ’¼‰º‚É’u‚¢‚Ă邯‚Ç“Á‚É–â‘è‚È‚µD
/usr/local/‚Ì’†‚ɃCƒ“ƒXƒg[ƒ‹‚µ‚悤‚Æmake public install‚Æ‚·‚邯
# make public install emacs -batch -l calc-maint.el -f calc-public-autoloads Unable to find "default" file. Create one and try again. *** Error code 255