Lines Matching defs:point

76 /* Insert a string of text into the line at point.  This is the only
156 /* Fix up point so that it is within the line boundaries after killing
289 int point;
299 point = _rl_find_next_mbchar (rl_line_buffer, rl_point, count, MB_FIND_NONZERO);
302 if (rl_end <= point && rl_editing_mode == vi_mode)
303 point = _rl_find_prev_mbchar (rl_line_buffer, rl_end, MB_FIND_NONZERO);
306 if (rl_point == point)
309 rl_point = point;
365 int point;
375 point = rl_point;
377 while (count > 0 && point > 0)
379 point = _rl_find_prev_mbchar (rl_line_buffer, point, MB_FIND_NONZERO);
388 rl_point = point;
493 just before point. */
620 /* Insert the character C at the current location, moving point forward.
804 /* Overwrite the character at point (or next COUNT characters) with C.
994 /* Emacs puts point at the beginning of the sequence of spaces. */
1007 /* Rubout the character behind point. */
1108 point is at the end of the line, in which case the character
1121 /* Delete all spaces and tabs around point. */
1205 /* Uppercase the word at point. */
1213 /* Lowercase the word at point. */
1232 If a negative argument is given, leave point where it started,
1322 /* Transpose the words at point. If point is at the end of the line,
1323 transpose the two words before point. */
1371 /* This is exactly correct since the text before this point has not
1383 /* Transpose the characters at point. If point is at the end of the line,
1384 then transpose the characters before point. */
1629 /* Exchange the position of mark and point. */