diff options
| author | Drew Adams | 2011-05-11 18:38:18 +0200 |
|---|---|---|
| committer | Juanma Barranquero | 2011-05-11 18:38:18 +0200 |
| commit | e531bdfff1ee57a0ba4af6c8575ed7856e4c86d2 (patch) | |
| tree | d9a6140bd141142eae4d664f151bf1d57822c4c0 /src | |
| parent | 7db47798f82694ea85003f3ea004600ab6a68fc3 (diff) | |
| download | emacs-e531bdfff1ee57a0ba4af6c8575ed7856e4c86d2.tar.gz emacs-e531bdfff1ee57a0ba4af6c8575ed7856e4c86d2.zip | |
src/textprop.c (Fprevious_single_char_property_change): Doc fix (bug#8655).
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/textprop.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 6ed7883ded4..2767231b64b 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2011-05-11 Drew Adams <drew.adams@oracle.com> | ||
| 2 | |||
| 3 | * textprop.c (Fprevious_single_char_property_change): Doc fix (bug#8655). | ||
| 4 | |||
| 1 | 2011-05-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | 5 | 2011-05-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> |
| 2 | 6 | ||
| 3 | * w32term.c (w32_draw_fringe_bitmap): Rename local vars `left' and | 7 | * w32term.c (w32_draw_fringe_bitmap): Rename local vars `left' and |
diff --git a/src/textprop.c b/src/textprop.c index 7a95cdc7b02..132c2ff23dc 100644 --- a/src/textprop.c +++ b/src/textprop.c | |||
| @@ -874,8 +874,8 @@ In a buffer, it runs to (point-min), and the value cannot be less than that. | |||
| 874 | The property values are compared with `eq'. | 874 | The property values are compared with `eq'. |
| 875 | If the property is constant all the way to the start of OBJECT, return the | 875 | If the property is constant all the way to the start of OBJECT, return the |
| 876 | first valid position in OBJECT. | 876 | first valid position in OBJECT. |
| 877 | If the optional fourth argument LIMIT is non-nil, don't search | 877 | If the optional fourth argument LIMIT is non-nil, don't search back past |
| 878 | back past position LIMIT; return LIMIT if nothing is found before LIMIT. */) | 878 | position LIMIT; return LIMIT if nothing is found before reaching LIMIT. */) |
| 879 | (position, prop, object, limit) | 879 | (position, prop, object, limit) |
| 880 | Lisp_Object prop, position, object, limit; | 880 | Lisp_Object prop, position, object, limit; |
| 881 | { | 881 | { |