diff options
| author | Miles Bader | 2007-05-20 03:12:22 +0000 |
|---|---|---|
| committer | Miles Bader | 2007-05-20 03:12:22 +0000 |
| commit | 7d5f6be179b35a1e255624234f9c436d146f3b55 (patch) | |
| tree | 4fbc7ddb0ba880e67e32c56fe1d00048d31c5021 /src | |
| parent | 20d385d66b6fd9ec6d9bea4856d02994b183aa95 (diff) | |
| parent | 8d0b40c0401e098054fef29db480501e589cd02c (diff) | |
| download | emacs-7d5f6be179b35a1e255624234f9c436d146f3b55.tar.gz emacs-7d5f6be179b35a1e255624234f9c436d146f3b55.zip | |
Merge from emacs--rel--22
Patches applied:
* emacs--rel--22 (patch 20-21)
- Update from CVS
2007-05-18 Richard M. Stallman <rms@gnu.org>
* lisp/simple.el (push-mark): Doc fix.
2007-05-18 Rob Riepel <riepel@Stanford.EDU>
* lisp/emulation/tpu-edt.el (CSI-map, SS3-map) Moved from global-map to
tpu-global-map.
(tpu-original-global-map) Variable deleted.
(tpu-control-keys-map) New keymap variable.
(tpu-set-control-keys) Use tpu-reset-control-keys rather than
setting keymapping directly.
(tpu-reset-control-keys) Use tpu-control-keys-map instead of
tpu-global-map.
(tpu-edt-on): Activate the tpu-global-map.
(tpu-edt-off): Deactivate the tpu-global-map.
2007-05-18 Ryan Yeske <rcyeske@gmail.com>
* lisp/textmodes/ispell.el (ispell-get-word): Return markers
for start and end positions.
(ispell-word): Assume END is a marker.
2007-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
* src/syntax.c (skip_chars): Update syntax-table only after we checked that
the new location is valid.
2007-05-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
* src/macterm.c (x_calc_absolute_position): Add BLOCK_INPUT around
mac_get_window_bounds.
Revision: emacs@sv.gnu.org/emacs--devo--0--patch-759
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 10 | ||||
| -rw-r--r-- | src/macterm.c | 2 | ||||
| -rw-r--r-- | src/syntax.c | 2 |
3 files changed, 13 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index e21a1ca1389..c2394e368b0 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,13 @@ | |||
| 1 | 2007-05-19 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * syntax.c (skip_chars): Update syntax-table only after we checked that | ||
| 4 | the new location is valid. | ||
| 5 | |||
| 6 | 2007-05-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | ||
| 7 | |||
| 8 | * macterm.c (x_calc_absolute_position): Add BLOCK_INPUT around | ||
| 9 | mac_get_window_bounds. | ||
| 10 | |||
| 1 | 2007-05-20 Nick Roberts <nickrob@snap.net.nz> | 11 | 2007-05-20 Nick Roberts <nickrob@snap.net.nz> |
| 2 | 12 | ||
| 3 | * Makefile.in (LIBGPM): Allow it to be set from configure. | 13 | * Makefile.in (LIBGPM): Allow it to be set from configure. |
diff --git a/src/macterm.c b/src/macterm.c index 1acb521f47b..9c1a151f4a9 100644 --- a/src/macterm.c +++ b/src/macterm.c | |||
| @@ -6084,7 +6084,9 @@ x_calc_absolute_position (f) | |||
| 6084 | 6084 | ||
| 6085 | /* Find the offsets of the outside upper-left corner of | 6085 | /* Find the offsets of the outside upper-left corner of |
| 6086 | the inner window, with respect to the outer window. */ | 6086 | the inner window, with respect to the outer window. */ |
| 6087 | BLOCK_INPUT; | ||
| 6087 | mac_get_window_bounds (f, &inner, &outer); | 6088 | mac_get_window_bounds (f, &inner, &outer); |
| 6089 | UNBLOCK_INPUT; | ||
| 6088 | 6090 | ||
| 6089 | width_diff = (outer.right - outer.left) - (inner.right - inner.left); | 6091 | width_diff = (outer.right - outer.left) - (inner.right - inner.left); |
| 6090 | height_diff = (outer.bottom - outer.top) - (inner.bottom - inner.top); | 6092 | height_diff = (outer.bottom - outer.top) - (inner.bottom - inner.top); |
diff --git a/src/syntax.c b/src/syntax.c index a9e6dda81fe..acb5d37825c 100644 --- a/src/syntax.c +++ b/src/syntax.c | |||
| @@ -1669,10 +1669,10 @@ skip_chars (forwardp, syntaxp, string, lim, handle_iso_classes) | |||
| 1669 | p = GPT_ADDR; | 1669 | p = GPT_ADDR; |
| 1670 | stop = endp; | 1670 | stop = endp; |
| 1671 | } | 1671 | } |
| 1672 | UPDATE_SYNTAX_TABLE_BACKWARD (pos - 1); | ||
| 1672 | if (! fastmap[(int) SYNTAX (p[-1])]) | 1673 | if (! fastmap[(int) SYNTAX (p[-1])]) |
| 1673 | break; | 1674 | break; |
| 1674 | p--, pos--; | 1675 | p--, pos--; |
| 1675 | UPDATE_SYNTAX_TABLE_BACKWARD (pos - 1); | ||
| 1676 | } | 1676 | } |
| 1677 | } | 1677 | } |
| 1678 | } | 1678 | } |