diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | NEWS | 8 | ||||
-rw-r--r-- | doc/ratpoison.texi | 8 | ||||
-rw-r--r-- | src/main.c | 2 |
4 files changed, 15 insertions, 7 deletions
@@ -1,3 +1,7 @@ +2005-01-14 Shawn Betts <katia_dilkina@verizon.net> + + * src/main.c (init_defaults): turn off warp by default. + 2005-01-14 Shawn Betts <sabetts@vcn.bc.ca> * src/actions.c (ARG_STRING): new define @@ -7,6 +7,14 @@ are permitted in any medium without royalty provided the copyright notice and this notice are preserved. * Changes since 1.3.0 +** ratpoison -c prints errors to stderr +You can now capture errors and output seperately depending on whether +its printed to stderr or stdout. + +** the mouse warp feature is now turned off by default +to turn it back on, run 'warp on'. + +* Changes since 1.3.0 ** version now displays the date and time ** new command, sselect diff --git a/doc/ratpoison.texi b/doc/ratpoison.texi index 2133ce4..66c1325 100644 --- a/doc/ratpoison.texi +++ b/doc/ratpoison.texi @@ -878,9 +878,6 @@ restart ratpoison: @example bind R restart @end example - -If no command is specified then bind works exactly like @command{unbind}, -unbinding the key. @end deffn @deffn Command unbind @var{key} @@ -888,9 +885,8 @@ Unbind a keystroke. @end deffn @deffn Command definekey @var{kmap} @var{key} @var{command} -@command{definekey} works exactly like @command{bind} and -@command{unbind} except that it can bind keys on any key map (not just -@samp{root}). +@command{definekey} works exactly like @command{bind} except that it +can bind keys on any key map (not just @samp{root}). @end deffn @deffn Command undefinekey @var{kmap} @var{key} @@ -494,7 +494,7 @@ init_defaults () defaults.win_name = WIN_NAME_TITLE; defaults.startup_message = 1; - defaults.warp = 1; + defaults.warp = 0; defaults.window_list_style = STYLE_COLUMN; defaults.history_size = 20; |