- Timestamp:
- Jul 22, 2011, 3:00:24 AM (13 years ago)
- Branches:
- master, release-1.10, release-1.9
- Children:
- e9a939b, 11e78d5, d933c3ca, a7fac14
- Parents:
- 6500907
- git-author:
- Jason Gross <jgross@mit.edu> (07/22/11 02:30:46)
- git-committer:
- Jason Gross <jgross@mit.edu> (07/22/11 03:00:24)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
editwin.c
r6829afc rf661cee 1151 1151 { 1152 1152 oe_excursion x; 1153 gunichar ch; 1153 gunichar ch = 0; 1154 gunichar last_ch; 1154 1155 int sentence; 1155 1156 … … 1184 1185 } 1185 1186 1187 last_ch = ch; 1186 1188 ch = owl_editwin_get_char_at_point(e); 1187 1189 … … 1201 1203 } 1202 1204 1203 if(ch == '.' || ch == '!' || ch == '?') 1205 if (ch == '.' || ch == '!' || ch == '?' || 1206 (ch == '"' && (last_ch == '.' || last_ch == '!' || last_ch == '?'))) 1204 1207 sentence = 1; 1205 1208 else
Note: See TracChangeset
for help on using the changeset viewer.