Changeset 13e2096 for commands.c
- Timestamp:
- Nov 7, 2010, 2:26:33 PM (14 years ago)
- Branches:
- master, release-1.10, release-1.7, release-1.8, release-1.9
- Children:
- cedbe9d
- Parents:
- bc14adc
- git-author:
- David Benjamin <davidben@mit.edu> (11/07/10 00:50:19)
- git-committer:
- David Benjamin <davidben@mit.edu> (11/07/10 14:26:33)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
commands.c
rdf4ccc0 r13e2096 2711 2711 owl_function_makemsg("Command cancelled."); 2712 2712 2713 if(owl_editwin_get_echochar(e) == 0) {2714 hist=owl_editwin_get_history(e);2713 hist = owl_editwin_get_history(e); 2714 if (hist) { 2715 2715 owl_history_store(hist, owl_editwin_get_text(e)); 2716 2716 owl_history_reset(hist); … … 2726 2726 2727 2727 hist=owl_editwin_get_history(e); 2728 if (!hist) 2729 return; 2728 2730 if (!owl_history_is_touched(hist)) { 2729 2731 owl_history_store(hist, owl_editwin_get_text(e)); … … 2745 2747 2746 2748 hist=owl_editwin_get_history(e); 2749 if (!hist) 2750 return; 2747 2751 ptr=owl_history_get_next(hist); 2748 2752 if (ptr) {
Note: See TracChangeset
for help on using the changeset viewer.