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
>>329 ありがとう。 No fonts match `-*-fixed-medium-i-normal--14-*-*-*-*-*-iso8859-1' って出るんだけど。 確かにxfontselで見ても-*-fixed-medium-i-normal--14-*-*-*-*-*-iso8859-1は ないようです。 Xの標準のフォントだと思うのだけど、無いのは僕の環境の問題でしょうか?
331 : :02/01/08 22:32
>>330 X で標準配布されるフォントには、ないような気がする。別途 適当なフォントを指定するか alias で対処するか。
>>345 M-x help RET k C-x ^ ってやると、 C-x ^ は enlarge-window という関数を呼んでいることがわかる。 横に広げるのもたぶん似たような名前だろうから M-x enlarge-window TAB TAB とやると、 enlarge-window-holizontally という関数が見つかる。 M-x help RET b でキーバインド一覧が見れるので、 C-s で enlarge-window-holizontally を探せ。
(Linux板に emacs関連が見あたらなかったので、こちらに書き込みます。) Red Hat Linux 7.2で、Emacsを立ち上げ、ディレクトリを開くと、 fでファイルを開けなかったり、nやpの動作がおかしくないですか? MeadowやSolarisでは、こんなことはありませんでした。 知人のRed Hatでも同じ症状でした。
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パッチを当ててあります。 --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
# 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