«前の日記(2003.11.24 / Monday) 最新 次の日記(2003.11.26 / Wednesday)» 編集

Hena Hena Nikki

2003|05|06|07|08|09|10|11|12|
2004|01|02|03|04|05|06|07|08|09|10|11|12|
2005|01|02|03|04|05|06|07|08|09|10|11|12|
2006|01|02|03|04|05|06|07|08|09|10|11|12|
2007|01|02|03|04|05|06|07|08|09|10|11|12|
2008|01|02|03|04|05|06|07|08|09|10|11|12|
2009|01|02|03|04|05|06|07|08|09|10|11|12|
2010|01|02|03|04|05|06|07|08|09|10|11|12|
2011|01|02|03|04|05|06|07|08|10|11|12|
2012|01|02|03|04|05|06|07|08|10|12|
2013|01|02|04|06|

2003.11.25 / Tuesday [長年日記]

* [computer/update] Becky! Internet Mail ver.2.07.03

Windows 定番の message user agent。 約 1 ヶ月半ぶりの version up。

* [computer/update] dvipdfmx 2003/11/16 版

dvi ファイルを pdf ファイルに変換するツールを日本語に対応させたもの。 所謂人柱版。

* [computer/update] Mew ver.4.0.61

emacsen な定番 mail user agent。 所謂人柱版。

* [myself] 今日の MFC

会議と勉強会に出てた関係で、思っていたよりも作業時間を取れなかった。 結局、やる予定だった作業の一つに手をつけることなく終業時間を迎えてしまった。 仕様変更もどきに苦戦したのも原因かな。 弱すぎだ。 :(

相変わらず細かい仕様が曖昧なままなので、ちょっと動き辛いな。 最悪の場合、明日から残業続きになるかも。

* [myself] 今日の散財

1 週間ほど前に出てた CD を購入。 今回も CCCD はナシよん。 :)

  • 面影 / 小島 麻由美
  • imagination / clammbon

とりあえず小島さん最高。

* [computer] region 選択状態の判断

xcite.el の xcite-fill で領域選択できるようにするパッチを 作者の広瀬さんに送ったところ、「transient-mark-mode を使っていない場合と共存できないですかね?」と言われてしまった。 ちょっと実験中かつ悩み中 (古い環境を考慮するのが辛い)。

(defun xcite-fill-base (arg)
  (if (looking-at xcite-cite-regexp)
      (let ((fill-prefix (xcite-match-string 0))
            (paragraph-start xcite:paragraph-separate)
            (paragraph-separate xcite:paragraph-separate))
        (fill-paragraph arg))
    (fill-paragraph arg)))
(defun xcite-fill (&optional arg)
  "Alternative function of `fill-paragraph'."
  (interactive "P")
  (save-excursion
    (beginning-of-line)
    (if (xcite-transient-region-active-p)
        (save-restriction
          (narrow-to-region (region-beginning) (region-end))
          (goto-char (point-min))
          (xcite-fill-base arg))
      (xcite-fill-base arg))))
(if (string-match "XEmacs\\|Lucid" emacs-version)
    (defun xcite-transient-region-active-p ()
      (and (boundp 'transient-mark-mode)
           transient-mark-mode
           (region-active-p)))
  (defun xcite-transient-region-active-p ()
    (and (boundp 'transient-mark-mode)
         transient-mark-mode
         (boundp 'mark-active)
         mark-active)))

ちなみに xcite-transient-region-active-p は小松さんのコードを頂戴したもの。

…誰か、助けてください。 (^^;


  • この日記には本日 名の方が訪問してくださっているようです。 また、昨日は 名の方が訪問してくださったようです。
  • この日記の更新情報の取得には antenna.lirs を利用するのがおすすめです。