diff options
author | Richard M. Stallman <rms@gnu.org> | 2005-09-04 01:07:27 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2005-09-04 01:07:27 +0000 |
commit | 9b7a2369390a58f96cc96f7992bd9737d96af64a (patch) | |
tree | ff027a42d56708d301d32764abe759d2e6ef99fd /src | |
parent | 4b5fa40e1f1ba3cafde672863a0331311d1c2695 (diff) | |
download | emacs-9b7a2369390a58f96cc96f7992bd9737d96af64a.tar.gz |
(Fpropertize): Don't insist that properties be symbols.
Diffstat (limited to 'src')
-rw-r--r-- | src/editfns.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/editfns.c b/src/editfns.c index da4533d2537..a05d2396448 100644 --- a/src/editfns.c +++ b/src/editfns.c @@ -3260,10 +3260,7 @@ usage: (propertize STRING &rest PROPERTIES) */) string = Fcopy_sequence (args[0]); for (i = 1; i < nargs; i += 2) - { - CHECK_SYMBOL (args[i]); - properties = Fcons (args[i], Fcons (args[i + 1], properties)); - } + properties = Fcons (args[i], Fcons (args[i + 1], properties)); Fadd_text_properties (make_number (0), make_number (SCHARS (string)), |