diff options
| -rw-r--r-- | ChangeLog | 11 | ||||
| -rw-r--r-- | doc-jp/README.func | 2 | ||||
| -rw-r--r-- | doc/README.func | 2 | ||||
| -rw-r--r-- | scripts/w3mhelp.cgi.in | 5 | 
4 files changed, 17 insertions, 3 deletions
| @@ -1,3 +1,12 @@ +2002-12-11  Hironori SAKAMOTO <hsaka@mth.biglobe.ne.jp> + +	* [w3m-dev 03554] Re: Undo/Redo +	* doc/README.func (REDO): added +			(UNDO): added +	* doc-jp/README.func (REDO): added +			(UNDO): added +	* scripts/w3mhelp.cgi.in: (Page/Cursor motion): add undoPos, redoPos +  2002-12-11  Fumitoshi UKAI  <ukai@debian.or.jp>  	* NEWS: func: REDO, UNDO @@ -5706,4 +5715,4 @@ a	* [w3m-dev 03276] compile error on EWS4800  	* release-0-2-1  	* import w3m-0.2.1 -$Id: ChangeLog,v 1.610 2002/12/10 15:53:55 ukai Exp $ +$Id: ChangeLog,v 1.611 2002/12/11 02:57:30 ukai Exp $ diff --git a/doc-jp/README.func b/doc-jp/README.func index e85046d..3f63e49 100644 --- a/doc-jp/README.func +++ b/doc-jp/README.func @@ -97,6 +97,7 @@ PREV_WORD	前の単語に移動します  PRINT		バッファの表示内容をファイルに保存します  QUIT		w3mを終了します  READ_SHELL	コマンドを実行し,結果を全部読んでから表示します +REDO		Undo を取り消します  REDRAW		再描画します  REG_MARK	正規表現で指定された文字列を全てマークします  REINIT		設定ファイルを再読込します。 @@ -129,6 +130,7 @@ TAB_LINK	リンクが指す先の文書を新しいタブで開きます  TAB_MENU	タブ選択メニューを立ち上げます  TAB_MOUSE	マウスカーソルの位置のタブに移動します(マウス操作用)  TAB_RIGHT	現在のタブを右に移動します +UNDO		最後のカーソル移動を取り消します  UP		画面を1行上にスクロールします  VERSION                w3m のバージョンを表示します  VIEW		HTMLのソースを表示します diff --git a/doc/README.func b/doc/README.func index 5fa970f..67f6152 100644 --- a/doc/README.func +++ b/doc/README.func @@ -97,6 +97,7 @@ PREV_WORD	Move to previous word  PRINT		Save buffer to file  QUIT		Quit w3m  READ_SHELL	Execute shell command and load +REDO		Cancel the last undo  REDRAW		Redraw screen  REG_MARK	Set mark using regexp  REINIT		Reload configuration files @@ -129,6 +130,7 @@ TAB_LINK	Open current link on new tab  TAB_MENU	Popup tab selection menu  TAB_MOUSE	Move to tab on mouse cursor (for mouse action)  TAB_RIGHT	Move current tab right +UNDO		Cancel the last cursor movement  UP		Scroll up one line  VERSION                Display version of w3m  VIEW		View HTML source diff --git a/scripts/w3mhelp.cgi.in b/scripts/w3mhelp.cgi.in index 6b6a206..f7b247c 100644 --- a/scripts/w3mhelp.cgi.in +++ b/scripts/w3mhelp.cgi.in @@ -1,5 +1,5 @@  #!@PERL@ -# $Id: w3mhelp.cgi.in,v 1.21 2002/12/09 15:51:10 ukai Exp $ +# $Id: w3mhelp.cgi.in,v 1.22 2002/12/11 02:57:30 ukai Exp $  if ( $^O =~ /^(ms)?(dos|win(32|nt)?)/i ) {    $CYGPATH = 1; @@ -135,7 +135,8 @@ for $otherlang (@docdirs) {  		shiftl shiftr col1L col1R linbeg linend ctrCsrH ctrCsrV  		goLine goLineF goLineL movRW movLW  		topA lastA nextA prevA movlistMn -		nextR nextL nextD nextU nextRD nextLU")); +		nextR nextL nextD nextU nextRD nextLU +		undoPos redoPos"));  &show_keymap("Hyperlink operation",  	     split(" ", "followA tabA svA followI svI submitForm | 
