diff options
| author | Stefan Monnier | 2002-11-03 09:36:55 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2002-11-03 09:36:55 +0000 |
| commit | 3a6607a22416905277b0938b722d1a08845e8f7d (patch) | |
| tree | b24763f33caf31e7cb05114ea09a910fdd57d37d /src | |
| parent | 7e16ef60e42c1b7af5ceca2fe8ecfc42e49eb029 (diff) | |
| download | emacs-3a6607a22416905277b0938b722d1a08845e8f7d.tar.gz emacs-3a6607a22416905277b0938b722d1a08845e8f7d.zip | |
(adjust_point_for_property): copy/paste error.
Diffstat (limited to 'src')
| -rw-r--r-- | src/keyboard.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/keyboard.c b/src/keyboard.c index c0afb84c3c4..7e3e4372e51 100644 --- a/src/keyboard.c +++ b/src/keyboard.c | |||
| @@ -1838,7 +1838,7 @@ adjust_point_for_property (last_pt) | |||
| 1838 | beg < PT) | 1838 | beg < PT) |
| 1839 | && (tmp = Fnext_single_char_property_change | 1839 | && (tmp = Fnext_single_char_property_change |
| 1840 | (make_number (PT), Qinvisible, Qnil, Qnil), | 1840 | (make_number (PT), Qinvisible, Qnil, Qnil), |
| 1841 | end = NILP (tmp) ? BEGV : XFASTINT (tmp), | 1841 | end = NILP (tmp) ? ZV : XFASTINT (tmp), |
| 1842 | (last_pt <= beg || last_pt >= end))) | 1842 | (last_pt <= beg || last_pt >= end))) |
| 1843 | { | 1843 | { |
| 1844 | SET_PT (PT < last_pt ? beg : end); | 1844 | SET_PT (PT < last_pt ? beg : end); |