aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman2003-01-13 08:22:08 +0000
committerRichard M. Stallman2003-01-13 08:22:08 +0000
commit294d643a40ddc1bcb61933cba1e4c1933062d8bf (patch)
tree8265c24f88b8c59b6ed072e0fbc7b49878412cb2 /src
parentd86ba5c511933cc55c0fd35614d95cea28e993f3 (diff)
downloademacs-294d643a40ddc1bcb61933cba1e4c1933062d8bf.tar.gz
emacs-294d643a40ddc1bcb61933cba1e4c1933062d8bf.zip
Finish previous change.
Diffstat (limited to 'src')
-rw-r--r--src/keyboard.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index bde6ac354a2..9dbbda0276c 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -1682,6 +1682,11 @@ command_loop_1 ()
1682 if (value == 2) 1682 if (value == 2)
1683 nonundocount = 0; 1683 nonundocount = 0;
1684 1684
1685 if (! NILP (Vpost_command_hook))
1686 /* Put this before calling adjust_point_for_property
1687 so it will only get called once in any case. */
1688 goto directly_done;
1689
1685 /* VALUE == 1 when AFTER-CHANGE functions are 1690 /* VALUE == 1 when AFTER-CHANGE functions are
1686 installed which is the case most of the time 1691 installed which is the case most of the time
1687 because FONT-LOCK installs one. */ 1692 because FONT-LOCK installs one. */