diff options
| author | Michael Albinus | 2017-06-05 13:00:07 +0200 |
|---|---|---|
| committer | Michael Albinus | 2017-06-05 13:00:07 +0200 |
| commit | 9f496c591d457b511a42c0f63e0d2d923cda0247 (patch) | |
| tree | 86b550b9b3a8c1b5cb33bfdca82e470ab211bfac /src/data.c | |
| parent | 751d5920bed1a3af01fd5a31ce4eb7d8b6994151 (diff) | |
| parent | 13e9493ea36df04e2c6b69e9b316d40c072ee88b (diff) | |
| download | emacs-9f496c591d457b511a42c0f63e0d2d923cda0247.tar.gz emacs-9f496c591d457b511a42c0f63e0d2d923cda0247.zip | |
Merge branch 'master' of git.sv.gnu.org:/srv/git/emacs
Diffstat (limited to 'src/data.c')
| -rw-r--r-- | src/data.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/data.c b/src/data.c index 25859105ee0..e4e55290e62 100644 --- a/src/data.c +++ b/src/data.c | |||
| @@ -700,12 +700,10 @@ global value outside of any lexical scope. */) | |||
| 700 | return (EQ (valcontents, Qunbound) ? Qnil : Qt); | 700 | return (EQ (valcontents, Qunbound) ? Qnil : Qt); |
| 701 | } | 701 | } |
| 702 | 702 | ||
| 703 | /* FIXME: It has been previously suggested to make this function an | 703 | /* It has been previously suggested to make this function an alias for |
| 704 | alias for symbol-function, but upon discussion at Bug#23957, | 704 | symbol-function, but upon discussion at Bug#23957, there is a risk |
| 705 | there is a risk breaking backward compatibility, as some users of | 705 | breaking backward compatibility, as some users of fboundp may |
| 706 | fboundp may expect `t' in particular, rather than any true | 706 | expect `t' in particular, rather than any true value. */ |
| 707 | value. An alias is still welcome so long as the compatibility | ||
| 708 | issues are addressed. */ | ||
| 709 | DEFUN ("fboundp", Ffboundp, Sfboundp, 1, 1, 0, | 707 | DEFUN ("fboundp", Ffboundp, Sfboundp, 1, 1, 0, |
| 710 | doc: /* Return t if SYMBOL's function definition is not void. */) | 708 | doc: /* Return t if SYMBOL's function definition is not void. */) |
| 711 | (register Lisp_Object symbol) | 709 | (register Lisp_Object symbol) |