Home
last modified time | relevance | path

Searched refs:uniarg (Results 1 – 13 of 13) sorted by relevance

/dports/editors/zile/zile-2.4.14/src/
H A Deval.c190 execute_with_uniarg (int uniarg, bool (*forward) (void), bool (*backward) (void)) in execute_with_uniarg() argument
192 if (backward && uniarg < 0) in execute_with_uniarg()
195 uniarg = -uniarg; in execute_with_uniarg()
198 for (int uni = 0; ret && uni < uniarg; ++uni) in execute_with_uniarg()
205 move_with_uniarg (int uniarg, bool (*move) (ptrdiff_t dir)) in move_with_uniarg() argument
208 for (unsigned long uni = 0; ret && uni < (unsigned) abs (uniarg); ++uni) in move_with_uniarg()
209 ret = move (uniarg < 0 ? - 1 : 1); in move_with_uniarg()
214 execute_function (const char *name, int uniarg, bool is_uniarg) in execute_function() argument
217 return func ? call_command (func, uniarg, is_uniarg, NULL) : NULL; in execute_function()
232 msg = astr_fmt ("%ld ", uniarg);
[all …]
H A Dfuncs.c685 ok = transpose (uniarg, move_char);
698 ok = transpose (uniarg, move_word);
707 ok = transpose (uniarg, move_sexp);
718 ok = transpose (uniarg, move_line);
724 mark (int uniarg, Function func) in mark() argument
728 ret = func (uniarg, true, NULL); in mark()
739 ok = mark (uniarg, F_forward_word);
750 ok = mark (uniarg, F_forward_sexp);
774 if (uniarg < 0) in move_paragraph()
776 uniarg = -uniarg; in move_paragraph()
[all …]
H A Dbasic.c94 return bool_to_lisp (move_line (-uniarg));
106 return bool_to_lisp (move_line (uniarg));
170 ok = bool_to_lisp (move_char (-uniarg));
182 ok = bool_to_lisp (move_char (uniarg));
213 ok = execute_with_uniarg (uniarg, scroll_down, scroll_up);
222 ok = execute_with_uniarg (uniarg, scroll_up, scroll_down);
H A Dmain.h106 typedef le * (*Function) (long uniarg, bool is_uniarg, le * list);
115 …le * F_ ## c_func (long uniarg _GL_UNUSED_PARAMETER, bool is_uniarg _GL_UNUSED_PARAMETER, le *argl…
165 name = uniarg; \
185 #define FUNCALL_ARG(c_func, uniarg) \ argument
186 F_ ## c_func (uniarg, true, leNIL)
H A Dkillring.c194 kill_text (int uniarg, Function mark_func) in kill_text() argument
202 mark_func (uniarg, true, NULL); in kill_text()
242 ok = kill_text (uniarg, F_mark_sexp);
H A Dextern.h38 le *call_command (Function f, int uniarg, bool uniflag, le *branch);
135 le *execute_with_uniarg (int uniarg, bool (*forward) (void), bool (*backward) (void));
136 le *move_with_uniarg (int uniarg, bool (*move) (ptrdiff_t dir));
137 le *execute_function (const char *name, int uniarg, bool is_uniarg);
315 le *F_ ## c_name (long uniarg, bool is_uniarg, le * l);
H A Dline.c60 ok = execute_with_uniarg (uniarg, insert_tab, NULL);
161 ok = execute_with_uniarg (uniarg, newline, NULL);
170 ok = execute_with_uniarg (uniarg, intercalate_newline, NULL);
H A Dmacro.c166 execute_with_uniarg (uniarg, call_macro, NULL);
181 execute_with_uniarg (uniarg, call_macro, NULL);
H A Dbind.c233 ok = execute_with_uniarg (uniarg, self_insert_command, NULL);
253 call_command (Function f, int uniarg, bool uniflag, le *branch) in call_command() argument
265 le *ok = f (uniarg, uniflag, branch); in call_command()
H A Dregisters.c109 execute_with_uniarg (uniarg, insert_register, NULL);
H A Dfile.c277 ok = F_find_file (uniarg, is_uniarg, arglist);
/dports/editors/zile/zile-2.4.14/
H A DNEWS174 Fix a long-standing bug in uniarg handling in macros.
515 uniarg yet).
H A DChangeLog1332 Fix #34086 (replay of macros not working properly with uniarg).
2013 Make goto-char accept uniarg, and remove redundant setting of resync flag.
2093 …Remove line_end_position and line_beginning_position, and remove uniarg support from end-of-line a…
3078 Default uniarg with C-u was 16; fix so it's 4 as it should be.
3092 Fix flag passed to command to indicate uniarg is set.
3112 …isp function type Function so that we can explicitly signal if there’s a uniarg, so we can accurat…
3238 Make sure a non-interactive arg always counts as a uniarg.