File: yudit-2.7.5.patch2.txt
Emergency: low
Usage: patch -p0 < yudit-2.7.5.patch2.txt
From: Gaspar Sinai <gsinai@yudit.org>
Date: Tokyo 2003-06-25

Ctrl-Home and Ctrl-End should not select the text - roll
back to 2.7.2 behaviour.

*** yudit-2.7.5/swidget/SEditor.cpp	Sun Mar  2 10:28:27 2003
--- yudit-2.7.6.beta1/swidget/SEditor.cpp	Sat Jun 28 15:17:21 2003
***************
*** 201,206 ****
        if (editorIF->isSelecting())
        {
!         if (meta||ctrl) editorIF->selectText (editorIF->getCursorIndex());
!         if (!meta && !ctrl) editorIF->deselectText();
        }
      }
--- 201,212 ----
        if (editorIF->isSelecting())
        {
!         if (meta)
!         {
!             editorIF->selectText (editorIF->getCursorIndex());
!         }
!         else // ctrl should just go to end without selecting.
!         {
!            editorIF->deselectText();
!         }
        }
      }
***************
*** 224,229 ****
        if (editorIF->isSelecting())
        {
!         if (meta||ctrl) editorIF->selectText (editorIF->getCursorIndex());
!         if (!meta && !ctrl) editorIF->deselectText();
        }
      }
--- 230,241 ----
        if (editorIF->isSelecting())
        {
!         if (meta)
!         {
!            editorIF->selectText (editorIF->getCursorIndex());
!         }
!         else // ctrl should just go to end without selecting.
!         {
!            editorIF->deselectText();
!         }
        }
      }
