diff options
| author | Alan Mackenzie | 2017-02-12 10:59:03 +0000 |
|---|---|---|
| committer | Alan Mackenzie | 2017-02-12 10:59:03 +0000 |
| commit | f4d5b687150810129b7a1d5b006e31ccf82b691b (patch) | |
| tree | 4229b13800349032697daae3904dc3773e6b7a80 /src/keymap.c | |
| parent | d5514332d4a6092673ce1f78fadcae0c57f7be64 (diff) | |
| parent | 148100d98319499f0ac6f57b8be08cbd14884a5c (diff) | |
| download | emacs-f4d5b687150810129b7a1d5b006e31ccf82b691b.tar.gz emacs-f4d5b687150810129b7a1d5b006e31ccf82b691b.zip | |
Merge branch 'master' into comment-cachecomment-cache
Diffstat (limited to 'src/keymap.c')
| -rw-r--r-- | src/keymap.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/keymap.c b/src/keymap.c index 9e759478518..9caf55f98fb 100644 --- a/src/keymap.c +++ b/src/keymap.c | |||
| @@ -523,7 +523,7 @@ access_keymap_1 (Lisp_Object map, Lisp_Object idx, | |||
| 523 | retval = Fcons (Qkeymap, Fcons (retval, retval_tail)); | 523 | retval = Fcons (Qkeymap, Fcons (retval, retval_tail)); |
| 524 | } | 524 | } |
| 525 | } | 525 | } |
| 526 | QUIT; | 526 | maybe_quit (); |
| 527 | } | 527 | } |
| 528 | 528 | ||
| 529 | return EQ (Qunbound, retval) ? get_keyelt (t_binding, autoload) : retval; | 529 | return EQ (Qunbound, retval) ? get_keyelt (t_binding, autoload) : retval; |
| @@ -877,7 +877,7 @@ store_in_keymap (Lisp_Object keymap, register Lisp_Object idx, Lisp_Object def) | |||
| 877 | should be inserted before it. */ | 877 | should be inserted before it. */ |
| 878 | goto keymap_end; | 878 | goto keymap_end; |
| 879 | 879 | ||
| 880 | QUIT; | 880 | maybe_quit (); |
| 881 | } | 881 | } |
| 882 | 882 | ||
| 883 | keymap_end: | 883 | keymap_end: |
| @@ -1250,7 +1250,7 @@ recognize the default bindings, just as `read-key-sequence' does. */) | |||
| 1250 | if (!CONSP (keymap)) | 1250 | if (!CONSP (keymap)) |
| 1251 | return make_number (idx); | 1251 | return make_number (idx); |
| 1252 | 1252 | ||
| 1253 | QUIT; | 1253 | maybe_quit (); |
| 1254 | } | 1254 | } |
| 1255 | } | 1255 | } |
| 1256 | 1256 | ||
| @@ -2466,7 +2466,7 @@ where_is_internal (Lisp_Object definition, Lisp_Object keymaps, | |||
| 2466 | non-ascii prefixes like `C-down-mouse-2'. */ | 2466 | non-ascii prefixes like `C-down-mouse-2'. */ |
| 2467 | continue; | 2467 | continue; |
| 2468 | 2468 | ||
| 2469 | QUIT; | 2469 | maybe_quit (); |
| 2470 | 2470 | ||
| 2471 | data.definition = definition; | 2471 | data.definition = definition; |
| 2472 | data.noindirect = noindirect; | 2472 | data.noindirect = noindirect; |
| @@ -3173,7 +3173,7 @@ describe_map (Lisp_Object map, Lisp_Object prefix, | |||
| 3173 | 3173 | ||
| 3174 | for (tail = map; CONSP (tail); tail = XCDR (tail)) | 3174 | for (tail = map; CONSP (tail); tail = XCDR (tail)) |
| 3175 | { | 3175 | { |
| 3176 | QUIT; | 3176 | maybe_quit (); |
| 3177 | 3177 | ||
| 3178 | if (VECTORP (XCAR (tail)) | 3178 | if (VECTORP (XCAR (tail)) |
| 3179 | || CHAR_TABLE_P (XCAR (tail))) | 3179 | || CHAR_TABLE_P (XCAR (tail))) |
| @@ -3426,7 +3426,7 @@ describe_vector (Lisp_Object vector, Lisp_Object prefix, Lisp_Object args, | |||
| 3426 | int range_beg, range_end; | 3426 | int range_beg, range_end; |
| 3427 | Lisp_Object val; | 3427 | Lisp_Object val; |
| 3428 | 3428 | ||
| 3429 | QUIT; | 3429 | maybe_quit (); |
| 3430 | 3430 | ||
| 3431 | if (i == stop) | 3431 | if (i == stop) |
| 3432 | { | 3432 | { |