diff options
| -rw-r--r-- | doc/lispref/edebug.texi | 8 | ||||
| -rw-r--r-- | src/textprop.c | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/doc/lispref/edebug.texi b/doc/lispref/edebug.texi index bd287ebe1af..e1147df8af3 100644 --- a/doc/lispref/edebug.texi +++ b/doc/lispref/edebug.texi | |||
| @@ -705,8 +705,8 @@ Evaluate expression @var{exp} in the context of Edebug itself | |||
| 705 | 705 | ||
| 706 | @item C-x C-e | 706 | @item C-x C-e |
| 707 | Evaluate the expression before point, in the context outside of Edebug | 707 | Evaluate the expression before point, in the context outside of Edebug |
| 708 | (@code{edebug-eval-last-sexp}). If given a zero prefix (for instance | 708 | (@code{edebug-eval-last-sexp}). With the prefix argument of zero |
| 709 | @kbd{C-u 0 C-x C-e}), don't shorten long items (like strings and | 709 | (@kbd{C-u 0 C-x C-e}), don't shorten long items (like strings and |
| 710 | lists). | 710 | lists). |
| 711 | @end table | 711 | @end table |
| 712 | 712 | ||
| @@ -739,8 +739,8 @@ Manual}) as well as these special commands: | |||
| 739 | @item C-j | 739 | @item C-j |
| 740 | Evaluate the expression before point, in the outside context, and | 740 | Evaluate the expression before point, in the outside context, and |
| 741 | insert the value in the buffer (@code{edebug-eval-print-last-sexp}). | 741 | insert the value in the buffer (@code{edebug-eval-print-last-sexp}). |
| 742 | If given a zero prefix (for instance @kbd{C-u 0 C-j}), don't shorten | 742 | With prefix argument of zero (@kbd{C-u 0 C-j}), don't shorten long |
| 743 | long items (like strings and lists). | 743 | items (like strings and lists). |
| 744 | 744 | ||
| 745 | @item C-x C-e | 745 | @item C-x C-e |
| 746 | Evaluate the expression before point, in the context outside of Edebug | 746 | Evaluate the expression before point, in the context outside of Edebug |
diff --git a/src/textprop.c b/src/textprop.c index dd2e68891e6..858b077ec18 100644 --- a/src/textprop.c +++ b/src/textprop.c | |||
| @@ -564,7 +564,7 @@ If OBJECT is a string, POSITION is a 0-based index into it. | |||
| 564 | If POSITION is at the end of OBJECT, the value is nil. | 564 | If POSITION is at the end of OBJECT, the value is nil. |
| 565 | 565 | ||
| 566 | If you want to display the text properties at point in a human-readable | 566 | If you want to display the text properties at point in a human-readable |
| 567 | form, the `describe-text-properties' command can be used. */) | 567 | form, use the `describe-text-properties' command. */) |
| 568 | (Lisp_Object position, Lisp_Object object) | 568 | (Lisp_Object position, Lisp_Object object) |
| 569 | { | 569 | { |
| 570 | register INTERVAL i; | 570 | register INTERVAL i; |