• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/bash-94.1.2/bash-3.2/lib/readline/

Lines Matching +defs:end +defs:point

76 /* Insert a string of text into the line at point.  This is the only
103 (rl_undo_list->end == rl_point) &&
104 (rl_undo_list->end - rl_undo_list->start < 20))
105 rl_undo_list->end++;
156 /* Fix up point so that it is within the line boundaries after killing
182 _rl_replace_text (text, start, end)
184 int start, end;
189 rl_delete_text (start, end + 1);
261 int end = rl_point + count;
268 if (end > lend)
274 rl_point = end;
289 int point;
303 point = _rl_find_next_mbchar (rl_line_buffer, rl_point, count, MB_FIND_NONZERO);
306 if (rl_end <= point && rl_editing_mode == vi_mode)
307 point = _rl_find_prev_mbchar (rl_line_buffer, rl_end, MB_FIND_NONZERO);
310 if (rl_point == point)
313 rl_point = point;
369 int point;
379 point = rl_point;
381 while (count > 0 && point > 0)
383 point = _rl_find_prev_mbchar (rl_line_buffer, point, MB_FIND_NONZERO);
392 rl_point = point;
423 /* Move to the end of the line. */
497 just before point. */
624 /* Insert the character C at the current location, moving point forward.
808 /* Overwrite the character at point (or next COUNT characters) with C.
998 /* Emacs puts point at the beginning of the sequence of spaces. */
1011 /* Rubout the character behind point. */
1058 /* The erase-at-end-of-line hack is of questionable merit now. */
1112 point is at the end of the line, in which case the character
1125 /* Delete all spaces and tabs around point. */
1209 /* Uppercase the word at point. */
1217 /* Lowercase the word at point. */
1236 If a negative argument is given, leave point where it started,
1242 int start, next, end;
1253 end = rl_point;
1262 SWAP (start, end);
1269 rl_modifying (start, end);
1272 while (start < end)
1300 mbrtowc (&wc, rl_line_buffer + start, end - start, &mps);
1316 rl_point = end;
1326 /* Transpose the words at point. If point is at the end of the line,
1327 transpose the two words before point. */
1375 /* This is exactly correct since the text before this point has not
1387 /* Transpose the characters at point. If point is at the end of the line,
1388 then transpose the characters before point. */
1633 /* Exchange the position of mark and point. */