diff options
| author | Paul Eggert | 2016-08-05 14:09:09 -0700 |
|---|---|---|
| committer | Paul Eggert | 2016-08-05 14:09:09 -0700 |
| commit | a855bf48d42cd7cbc9c72def3584fd354d433f97 (patch) | |
| tree | 9c9c2d5329af83b6cdf9de3871e268072b96ffeb /src/data.c | |
| parent | 8c818d8cb75f4d61cc1875311a7b6b5f0a2d8bd1 (diff) | |
| parent | 9a41cd1215e60415777bb139c0669100e347375b (diff) | |
| download | emacs-a855bf48d42cd7cbc9c72def3584fd354d433f97.tar.gz emacs-a855bf48d42cd7cbc9c72def3584fd354d433f97.zip | |
Merge from origin/emacs-25
9a41cd1 ; Fix typo
9356fe2 Expand FIXME near definition of fboundp
219b39f kill-rectangle should mention killed-rectangle
59fa4c3 Avoid assertion violations in nhexl-mode
Diffstat (limited to 'src/data.c')
| -rw-r--r-- | src/data.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/data.c b/src/data.c index 71da916ae74..5af590abed9 100644 --- a/src/data.c +++ b/src/data.c | |||
| @@ -629,7 +629,12 @@ global value outside of any lexical scope. */) | |||
| 629 | return (EQ (valcontents, Qunbound) ? Qnil : Qt); | 629 | return (EQ (valcontents, Qunbound) ? Qnil : Qt); |
| 630 | } | 630 | } |
| 631 | 631 | ||
| 632 | /* FIXME: Make it an alias for function-symbol! */ | 632 | /* FIXME: It has been previously suggested to make this function an |
| 633 | alias for symbol-function, but upon discussion at Debbug#23957, | ||
| 634 | there is a risk breaking backward compatiblity, as some users of | ||
| 635 | fboundp may expect `t' in particular, rather than any true | ||
| 636 | value. An alias is still welcome so long as the compatibility | ||
| 637 | issues are addressed. */ | ||
| 633 | DEFUN ("fboundp", Ffboundp, Sfboundp, 1, 1, 0, | 638 | DEFUN ("fboundp", Ffboundp, Sfboundp, 1, 1, 0, |
| 634 | doc: /* Return t if SYMBOL's function definition is not void. */) | 639 | doc: /* Return t if SYMBOL's function definition is not void. */) |
| 635 | (register Lisp_Object symbol) | 640 | (register Lisp_Object symbol) |