From ac9c313a306984ad610677c1a08bee2c550707eb Mon Sep 17 00:00:00 2001 From: ayin Date: Fri, 20 Jan 2006 18:02:43 +0000 Subject: [PATCH] *** empty log message *** --- configure.ac | 4 ++-- doc/rxvt.1.pod | 7 ++++--- src/urxvt.pm | 2 +- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/configure.ac b/configure.ac index fa32f803..552db038 100644 --- a/configure.ac +++ b/configure.ac @@ -50,12 +50,12 @@ AC_SUBST(LINKER,[$LINKER]) AC_LANG(C++) dnl# -------------------------------------------------------------------------- -dnl# Supply default CXXLAGS, if not specified by `CXXLAGS=flags ./configure' +dnl# Supply default CXXFLAGS, if not specified by `CXXFLAGS=flags ./configure' dnl# if test -z "$orig_CXXFLAGS"; then if test x$GCC = xyes && test "x$GXX" = xyes; then CXXFLAGS="-g -O3 -fno-threadsafe-statics -fno-enforce-eh-specs" - AC_COMPILE_IFELSE([int i;], [], [CXXFLAGS="-g -O3"]) + AC_COMPILE_IFELSE([AC_LANG_PROGRAM()], [], [CXXFLAGS="-g -O3"]) else CXXFLAGS="-O" fi diff --git a/doc/rxvt.1.pod b/doc/rxvt.1.pod index 7e4781f8..1fe35d89 100644 --- a/doc/rxvt.1.pod +++ b/doc/rxvt.1.pod @@ -1192,9 +1192,10 @@ the selection. =item B: -Pressing and releasing the Middle mouse button (or B) in -an B<@@RXVT_NAME@@> window causes the current text selection to be -inserted as if it had been typed on the keyboard. +Pressing and releasing the Middle mouse button in an B<@@RXVT_NAME@@> window +causes the value of the PRIMARY selection (Shift for CLIPBOARD) to be inserted +as if it had been typed on the keyboard. +B causes the value of the PRIMARY selection to be inserted too. =back diff --git a/src/urxvt.pm b/src/urxvt.pm index 94b349c6..773747bc 100644 --- a/src/urxvt.pm +++ b/src/urxvt.pm @@ -93,7 +93,7 @@ runtime. Binds a popup menu to Ctrl-Button3 that lets you convert the selection text into various other formats/action (such as uri unescaping, perl -evalution, web-browser starting etc.), depending on content. +evaluation, web-browser starting etc.), depending on content. Other extensions can extend this popup menu by pushing a code reference onto C<@{ $term->{selection_popup_hook} }>, that is called whenever the -- 2.34.1