• R/O
  • HTTP
  • SSH
  • HTTPS

tamago-tsunagi: コミット

Tamago-tsunagiのGitリポジトリです。


コミットメタ情報

リビジョン2d8fa7c3aae0219d3219fbe16636aea8af16442b (tree)
日時2015-01-30 00:03:09
作者Mitsutoshi NAKANO <bkbin005@rink...>
コミッターMitsutoshi NAKANO

ログメッセージ

fix #34849 "when egg-toroku-region, can not select menu by numbers"

* menudiag.el: fixed #34849 by Hiroki Sato <hrs@allbsd.org>
issue: when egg-toroku-region, can not select menu by numbers
https://sourceforge.jp/ticket/browse.php?group_id=9668&tid=34849
https://sourceforge.jp/projects/tamago-tsunagi/lists/archive/misc/2015-January/000037.html
patch:
https://sourceforge.jp/projects/tamago-tsunagi/lists/archive/misc/2015-January/000043.html
- added Hiroki Sato to copyright
* menudiag.el(menudiag-minibuffer-hook): added imput-method control
* menudiag.el(menudiag-select-internal): rebinded overriding-local-map
* menudiag.el: deleted Maintainer name

modified: ChangeLog
modified: NEWS
modified: menudiag.el

変更サマリ

差分

--- a/ChangeLog
+++ b/ChangeLog
@@ -1,11 +1,21 @@
11 2015-01-29 Mitsutoshi NAKANO <bkbin005@rinku.zaq.ne.jp>
22
3- * egg-sim.el(make-char-list):
3+ * menudiag.el: fixed #34849 by Hiroki Sato <hrs@allbsd.org>
4+ issue: when egg-toroku-region, can not select menu by numbers
5+ https://sourceforge.jp/ticket/browse.php?group_id=9668&tid=34849
6+ https://sourceforge.jp/projects/tamago-tsunagi/lists/archive/misc/2015-January/000037.html
7+ patch:
8+ https://sourceforge.jp/projects/tamago-tsunagi/lists/archive/misc/2015-January/000043.html
9+ - added Hiroki Sato to copyright
10+ * menudiag.el(menudiag-minibuffer-hook): added imput-method control
11+ * menudiag.el(menudiag-select-internal): rebinded overriding-local-map
12+ * menudiag.el: deleted Maintainer name
13+ * egg-sim.el(make-char-list): rewrote ignore-errors in make char
414 ARAI Shun-ichi <hermes@ceres.dti.ne.jp> wrote better fix.
515 https://sourceforge.jp/projects/tamago-tsunagi/lists/archive/misc/2015-January/000036.html
616 So Mitsutoshi rewrote.
717 * egg-sim.el: added ARAI Shun-ichi <hermes@ceres.dti.ne.jp> to copyright
8- * NEWS(5.0.4.0): announced new sim.
18+ * NEWS(5.0.4.0): announced new version
919 * egg.el(egg-version): up from 5.0.2.0 to 5.0.4.0
1020 * egg.el: added Mitsutoshi to copyright
1121
--- a/NEWS
+++ b/NEWS
@@ -1,11 +1,21 @@
11 NEWS about tamago-tsunagi
22 =========================
33
4-## 5.0.4.0 Mitsutoshi NAKANO <bkbin005@rinku.zaq.ne.jp> rewrote sim.
4+## 5.0.4.0 fixed 2 problems
5+
6+### Now, sim skips void chars in charsets
7+
58 ARAI Shun-ichi <hermes@ceres.dti.ne.jp> suggested better fix.
69 https://sourceforge.jp/projects/tamago-tsunagi/lists/archive/misc/2015-January/000036.html
7-So Mitsutoshi wewrote sim.
8-Now, the sim skips void chars in the charsets.
10+So Mitsutoshi NAKANO <bkbin005@rinku.zaq.ne.jp> rewrote sim.
11+
12+### fixed #34849 'when egg-toroku-region, can not select menu by numbers'
13+
14+Reported by ARAI Shun-ichi <hermes@ceres.dti.ne.jp>.
15+https://sourceforge.jp/ticket/browse.php?group_id=9668&tid=34849
16+https://sourceforge.jp/projects/tamago-tsunagi/lists/archive/misc/2015-January/000037.html
17+Fixed by Hiroki Sato <hrs@allbsd.org>.
18+https://sourceforge.jp/projects/tamago-tsunagi/lists/archive/misc/2015-January/000043.html
919
1020 ## 5.0.2.0 Mitsutoshi NAKANO <bkbin005@rinku.zaq.ne.jp>
1121
--- a/menudiag.el
+++ b/menudiag.el
@@ -1,11 +1,10 @@
11 ;;; menudiag.el --- Minibuffer Menu System
22
3-;; Copyright (C) 1999, 2000 Free Software Foundation, Inc
3+;; Copyright (C) 1999, 2000, 2015 Free Software Foundation, Inc
4+;; 2015 Hiroki Sato <hrs@allbsd.org>
45
56 ;; Author: NIIBE Yutaka <gniibe@chroot.org>
67
7-;; Maintainer: TOMURA Satoru <tomura@etl.go.jp>
8-
98 ;; Keywords: mule, multilingual, input method
109
1110 ;; This file is part of EGG.
@@ -226,6 +225,9 @@
226225 (remove-hook 'minibuffer-setup-hook 'menudiag-minibuffer-hook)
227226 (setq menudiag-minibuffer-list (cons (current-buffer)
228227 menudiag-minibuffer-list))
228+ (if (boundp 'deactivate-input-method)
229+ (deactivate-input-method)
230+ (inactivate-input-method))
229231 (buffer-disable-undo)
230232 (menudiag-receive-variables)
231233 (menudiag-beginning-of-items)
@@ -248,7 +250,7 @@
248250 (string-width (cadr menu)))))
249251 (add-hook 'minibuffer-setup-hook 'menudiag-minibuffer-hook)
250252 (unwind-protect
251- (progn
253+ (let ((overriding-local-map menudiag-mode-map))
252254 (read-from-minibuffer "" "" menudiag-mode-map)
253255 (menudiag-receive-variables))
254256 (setq menudiag-minibuffer-list (cdr menudiag-minibuffer-list))
旧リポジトリブラウザで表示