aboutsummaryrefslogtreecommitdiffstats
path: root/src/data.c
diff options
context:
space:
mode:
authorYuuki Harano2020-12-14 01:52:10 +0900
committerYuuki Harano2020-12-14 01:52:10 +0900
commit3e30047ce3a81dd0879973012abbf570d3215dfd (patch)
treec7c10e82f2ff37705356a0c25b98d92c603c7983 /src/data.c
parentaea5dbec2514811fb2e1cc44b2347a976a5b7de8 (diff)
parentfe50a8b9ba79b4ac14a3a352d8bf84eaee4f2122 (diff)
downloademacs-3e30047ce3a81dd0879973012abbf570d3215dfd.tar.gz
emacs-3e30047ce3a81dd0879973012abbf570d3215dfd.zip
Merge branch 'master' of git.sv.gnu.org:/srv/git/emacs into feature/pgtk
Diffstat (limited to 'src/data.c')
-rw-r--r--src/data.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/data.c b/src/data.c
index 384c2592204..76bacf7e131 100644
--- a/src/data.c
+++ b/src/data.c
@@ -1639,8 +1639,9 @@ default_value (Lisp_Object symbol)
1639 1639
1640DEFUN ("default-boundp", Fdefault_boundp, Sdefault_boundp, 1, 1, 0, 1640DEFUN ("default-boundp", Fdefault_boundp, Sdefault_boundp, 1, 1, 0,
1641 doc: /* Return t if SYMBOL has a non-void default value. 1641 doc: /* Return t if SYMBOL has a non-void default value.
1642This is the value that is seen in buffers that do not have their own values 1642A variable may have a buffer-local or a `let'-bound local value. This
1643for this variable. */) 1643function says whether the variable has a non-void value outside of the
1644current context. Also see `default-value'. */)
1644 (Lisp_Object symbol) 1645 (Lisp_Object symbol)
1645{ 1646{
1646 register Lisp_Object value; 1647 register Lisp_Object value;