[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [表紙] | [目次] | [索引] | [検索] [上端 / 下端] [?] |
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [表紙] | [目次] | [索引] | [検索] [上端 / 下端] [?] |
リリース情報を気が向いた時に書くところ.
Meadow に関連しそうなことをメモしていくところです.更新履歴に書き続けるのも変なの で,ニュース関連はここへ書いていきます.
情報などはコメントへ書いてください.
meadow-develop より
作業はまだ(commitはたぶん週末)ですが、モノが消えるといけないので、 以下のバージョンを使うというアナウンスだけしておきます。 括弧内は、ftp.imagemagick.org上の日付です。 実行ファイルは、 ImageMagick-6.2.0-Q16-windows-dll.exe (2004/02/28 13:44:00) ソースコードは(日付から、上記の元になるソースだと推測)、 ImageMagick-6.2.0-3.zip (2004/02/27 21:30:00) あと、Meadowをコンパイルする方は、ヘッダファイルはImageMagickのものを 使うように修正しますので、インストール時にヘッダファイルのインストール も必要になりますので注意してください。
なんだそうです.
先日リリースされた Emacs-21.4 を、2.10-dev に取り込みました。 21.3 のソースで変更されたのは lib-src/movemail.c の一行と、非常に 些細なものです。 これを契機に、2.10 をリリースすることを提案します。 2.10 では、多くのバグがフィックスがされており、2.00 より良いものに なっています。 とうわけで、どなたかリリース管理やってもらえませんか? 2.00 からの変更履歴は私が準備しますので。
ということで,Meadow 2.10 がリリースへと動き出しました.
となると,開発版は3.00へ行くのかどうなのか.また,インストール先はどうなりますか な.バージョン番号を含むのかな...設定済み Meadow をどうするか.と様子見.
しかし,すべてのパッケージをバージョンアップするのは大事なんだよなぁ...
Meadow-2.00pre1 (KIKYOU) is now available. Changed and Fixes: http://www.meadowy.org/meadow/ Source code: http://www.meadowy.org/meadow/dists/beta/Meadow-2.00b2-src.tar.bz2 and patch http://www.meadowy.org/meadow/dists/snapshot/WOMINAHESHI-2_00b2-KIKYOU-2_00pre1.patch.bz2 Executable binaries and Netinstall Package: http://www.meadowy.org/meadow/dists/2.00/ Pease execute `version 2.00.1 setup.exe'. I think, The Meadow-2.00 will be available soon.
Emacs の CVS による取得方法が変わりました.
cvs -z3 -d:ext:[email protected]:/cvsroot/emacs co emacs
です.取得のためには,以下の環境変数を設定しておく必要があります.
CVS_RSH="ssh"
サイトが移動したそうな.
As many noticed, http://www.gest.unipd.it/~saint has gone 404. The new homepage for html-helper-mode is http://www.nongnu.org/baol-hth/index.html
Beta2 がでました.
Happy New Year! Meadow-2.00Beta2 (WOMINAHESHI) is now available. Download: http://www.meadowy.org/meadow/dists/beta/Meadow-2.00b2-src.tar.bz2 Changed and Fixes: http://www.meadowy.org/meadow/ Netinstall Package: Meadow.exe-20040106-1-pkg is 2.00Beta2. I think, The Meadow2.00pre1 will be available soon.
Emacs 先端
grep 関連が grep.el としてまとめられ, color-grep 相当の機能などが盛り込まれてい るよう. grep-tree のような新規関数もあり楽しみだな.
はやく Meadow でも使ってみたい
New function
(defun dired-compare-directories (dir2 predicate) "Mark files with different file attributes in two dired buffers. Compare file attributes of files in the current directory with file attributes in directory DIR2 using PREDICATE on pairs of files with the same name. Mark files for which PREDICATE returns non-nil. |
News より.
* Changes in Emacs 21.4 + ** New command `display-local-help' displays any local help at point + in the echo area. It is bound to `C-h .'. It normally displays the + same string that would be displayed on mouse-over using the + `help-echo' property, but, in certain cases, it can display a more + keyboard oriented alternative. + + ** New user option `help-at-pt-display-when-idle' allows to + automatically show the help provided by `display-local-help' on + point-over, after suitable idle time. The amount of idle time is + determined by the user option `help-at-pt-timer-delay' and defaults + to one second. This feature is turned off by default. + + ** New commands `scan-buf-next-region' and `scan-buf-previous-region' + move to the start of the next (previous, respectively) region with + non-nil help-echo property and display any help found there in the + echo area, using `display-local-help'. + |
http://article.gmane.org/gmane.emacs.help/8182
multi-occur を利用して全バッファを検索するための関数. CVS 先端の Emacs でないと 意味がない.
(defun hanchrow-all-encompassing-occur (regexp &optional hidden-bufs-too) "Show all lines in all visible buffers containing a match for REGEXP. With prefix arg HIDDEN-BUFS-TOO, show lines matching in all buffers." (interactive (occur-read-primary-args)) (if (interactive-p) (setq hidden-bufs-too current-prefix-arg)) (multi-occur (if hidden-bufs-too (buffer-list) (delq nil (mapcar (lambda (buf) (unless (string-match "^ " (buffer-name buf)) buf)) (buffer-list)))) regexp)) |
以下のような関数でも可能です.これなら,C-u 3 M-x ,multi-occur-all-buffers で前後の行を表示することもできます.
(defun multi-occur-all-buffers (regexp &optional nlines) "Show all lines in all buffers containing a match for REGEXP. See also `multi-occur'." (interactive (occur-read-primary-args)) (occur-1 regexp nlines (remove (get-buffer "*Occur*") (buffer-list)))) |
CVS の先端の Emacs には multi-occur という occur が追加されています.M-x multi-occur で実行し,検索するバッファを 1 個 1 個していしていきます.結果は occur と同じような画面で表示され,C-c C-c で該当行へのジャンプが可能です. ファイルは replace.el です.
以下のベータ版スクリーンショットで「▼」のマークが出ていますが,なぜか別の環境で は出ませんでした.何か設定したのかもしれませんが,思い出せません.そのため,先日 の記述から「ファイルバッファではバッファの最後に▼のマークが出る」という記述を削 除しました.
バッファの最後以降の左端余白部分に「・」が表示されるようになりました。 折り返しには矢印が表示されます。
これは「 indicate-empty-lines 」を nil にすると消すことができます.この変数はバッ ファローカルです.
常に消すには
(setq-default indicate-empty-lines t) |
とします.
ちなみに,ここは fringe というフェイスなので
(set-face-foreground 'fringe "red")
|
とすると色を変えることができます.
新設.
(defcustom ediff-default-filtering-regexp nil "The default regular expression used as a filename filter in multifile comparisons.Should be a sexp. For instance (car ediff-filtering-regexp-history) or nil." :type 'sexp :group 'ediff-mult)
* ffap.el: Remove defadvice related code from CVS since `complete' provides a `PC-completion-as-file-name-predicate' variable that ffap can override.
2003-09-30 Richard M. Stallman * dired.el (dired-mode): Handle dired-directory as a list.
いろいろ出てます.
2003-10-13 Norbert Koch * Packages released: build gnus ediff. 2003-10-10 Norbert Koch * Packages released: gnus x-symbol. * MAINTAINERS: Update Steve Y's e-mail address. 2003-10-08 Norbert Koch * Packages released: os-utils xemacs-devel. * Packages released: jde hm--html-menus os-util xemacs-devel. 2003-10-03 Norbert Koch * Sumo packages released. 2003-10-01 Norbert Koch * Packages released: text-modes.
eeの 0.0.2 が出ました.
SKK:SKK 12.2.0rc2
人柱版です.
apel:10.6
fcopy:5.25
browse-kill-ringが http://www.todesschaf.org/へ移動.
emacs-w3m-1.3.5.tar.gz
http://ko.meadowy.net/~koichiro/diary/20030702.html#p01より
[email protected] が始動したそう.
まずは、 emacs-xml ML を作りました。 Emacs 上での XML 処理 について議論する為のメーリングリストです。 新規購読は [email protected] へ、 購読解除は [email protected] へ 空のメールを送って下さい。
Meadow-NADESHIKO-2_00b1-WOMINAHESHI-2_00b2-dev-20030701.patch.bz2
b2 です.
Meadow2
小関さんのメールを引用.ついに,公開です.パッケージも作成されています.
Meadow 2.00 Beta 1 Netinstaller is now available. Running setup2.exe will download and install Meadow, Emacs Lisp packages, ImageMagick and related libraries. http://www.meadowy.org/meadow/dists/2.x/setup2.exe http://www.meadowy.org/meadow/dists/2.x/setup2-ja.exe Including packages: Meadow-2.00b1, apel-10.5, bbdb-2.33, c-sig.3.8, emacs-w3m-1.3.4, flim-1.14.5, gnus-5.10.2, imagemagick-5.5.3-Q16, misc-0.1, mu-cite-8_1, mule-ucs-0.85rc2, navi2ch-cvs-20030616, sdic-2.1.3, select-xface-0.15, semi-1.14.5, session-2.2, ddskk-11.6.0, super-smart-find-1.87, t-gnus-6_16_2-02, x-face-e21-0.120 See the page below for details. http://www.meadowy.org/meadow/ http://www.meadowy.org/meadow/download.html Enjoy!
Meadow2
Meadow-NADESHIKO-2_00b1.tar.bz2
が出てます.
emacs-w3m-1.3.4 リリース
http://emacs-w3m.namazu.org/emacs-w3m-1.3.4.tar.gz が出ました.
このバージョンから, nnshimbun.el を含むようになりました.そのため,古い t-gnus を使 うと, t-gnus の nnshimbun.el が使われる可能性があります.
ちなみに,新しい t-gnus は
ftp://ftp.jpl.org/t-gnus-6.16/snapshots/t-gnus-6_16_2-02.tar.gz
にあります.
以下,山岡さんのメールより注意事項を引用.
今までのように T-gnus でウェブの新聞を閲覧したいのであれば、最新 版の emacs-w3m をインストールする必要があります。その際、*必ず* T-gnus 由来の `nnshimbun.el' と `nnshimbun.elc' ファイルを消して 下さい。
複数のバージョンの Gnus がインストールされている場合 (リリース版 と開発版の Gnus があるかもしれません) は、`load-path' にあなたが 使うバージョンがインストールされているディレクトリ (`gnus.elc' ファイルを調べましょう) を含むようにして下さい。以下のように `--with-addpath' オプションを使うことによって、これを確実に行な うことができます:
% ./configure --with-addpath=/usr/local/share/emacs/site-lisp/gnus
http://www.skamphausen.de/software/skamacs/highlight-context-line.el
バージョンアップ.
;; 1.5 January 2003 ;; - GNU Emacs compatibility due to request of ;; Sami Salkosuo (http://members.fortunecity.com/salkosuo) ;; - untabify file
だそうな
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [表紙] | [目次] | [索引] | [検索] [上端 / 下端] [?] |
追加,書き直しなど,比較的大きな変更があった時の履歴.
すべての更新履歴は 更新ファイル一覧 にあります.更 新ファイル一覧 にあって,ここに記載のないものは,細かい文章修正のみを行っていま す.
もう少し詳しいコメントは Wiki の日記にあることもあり ます.
新規に更新する内容は基本的に最新の Meadow 2.20 でしか確認していません
[ << ] | [ >> ] | [表紙] | [目次] | [索引] | [検索] [上端 / 下端] [?] |