[Cmake-commits] CMake branch, next, updated. v2.8.10-664-gdf1c5dc

David Cole david.cole at kitware.com
Wed Oct 31 16:43:35 EDT 2012


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".

The branch, next has been updated
       via  df1c5dcc3c9630d7d39276d917e8a89dcef9ab41 (commit)
       via  9998321bfeff5c61d8a8154aec38dbdd76ef4676 (commit)
      from  567a280cdbcd323b3652fa0313367367f58b8c62 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=df1c5dcc3c9630d7d39276d917e8a89dcef9ab41
commit df1c5dcc3c9630d7d39276d917e8a89dcef9ab41
Merge: 567a280 9998321
Author:     David Cole <david.cole at kitware.com>
AuthorDate: Wed Oct 31 16:43:33 2012 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Wed Oct 31 16:43:33 2012 -0400

    Merge topic 'fix-13604-ccmake-del-key' into next
    
    9998321 ccmake: Allow DEL key in first column


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=9998321bfeff5c61d8a8154aec38dbdd76ef4676
commit 9998321bfeff5c61d8a8154aec38dbdd76ef4676
Author:     Matthew Woehlke <matthew.woehlke at kitware.com>
AuthorDate: Wed Oct 24 14:46:46 2012 -0400
Commit:     David Cole <david.cole at kitware.com>
CommitDate: Wed Oct 24 15:13:20 2012 -0400

    ccmake: Allow DEL key in first column
    
    Change test if DEL key is allowed from 'curcol > 0' to 'curcol >= 0', as
    deleting forward is reasonable in the first column (and probably
    expected by users to work).

diff --git a/Source/CursesDialog/cmCursesStringWidget.cxx b/Source/CursesDialog/cmCursesStringWidget.cxx
index 5c7414f..bd1ff71 100644
--- a/Source/CursesDialog/cmCursesStringWidget.cxx
+++ b/Source/CursesDialog/cmCursesStringWidget.cxx
@@ -175,7 +175,7 @@ bool cmCursesStringWidget::HandleInput(int& key, cmCursesMainForm* fm,
       }
     else if ( key == ctrl('d') ||key == KEY_DC )
       {
-      if ( form->curcol > 0 )
+      if ( form->curcol >= 0 )
         {
         form_driver(form, REQ_DEL_CHAR);
         }

-----------------------------------------------------------------------

Summary of changes:
 Source/CursesDialog/cmCursesStringWidget.cxx |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list