aboutsummaryrefslogtreecommitdiffstats
path: root/src/data.c
diff options
context:
space:
mode:
authorGlenn Morris2017-11-29 17:12:05 -0800
committerGlenn Morris2017-11-29 17:12:05 -0800
commit7aedb6116ffaa6590c86e70380f533385c1ced58 (patch)
tree186436d57261f5bd0e5f1bff8844615c17b46128 /src/data.c
parent728d259243206136387b6b59c2efb7de8cd9f6ed (diff)
parent02d114d6b85e02132d5f99ead517b69dbdd77e35 (diff)
downloademacs-7aedb6116ffaa6590c86e70380f533385c1ced58.tar.gz
emacs-7aedb6116ffaa6590c86e70380f533385c1ced58.zip
Merge from origin/emacs-26
02d114d6b8 * lisp/tree-widget.el (tree-widget-end-guide): Escape it. ... 0a85d12474 Fix ELisp "Warning Tips" 06d05fec84 Fix Bug#29163 ac64fdb248 Harden exec_byte_code against redefining 'error' 700f74e4c8 Fix Edebug specs for if-let* and and-let* (Bug#29236) 0ded1b41a9 Fix Edebug's handling of dotted specs (bug#6415) 16358d4fcb Improve documentation of "constant" symbols
Diffstat (limited to 'src/data.c')
-rw-r--r--src/data.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/data.c b/src/data.c
index 7ca1892f64a..3c9152049b7 100644
--- a/src/data.c
+++ b/src/data.c
@@ -3896,12 +3896,14 @@ syms_of_data (void)
3896 set_symbol_function (Qwholenump, XSYMBOL (Qnatnump)->u.s.function); 3896 set_symbol_function (Qwholenump, XSYMBOL (Qnatnump)->u.s.function);
3897 3897
3898 DEFVAR_LISP ("most-positive-fixnum", Vmost_positive_fixnum, 3898 DEFVAR_LISP ("most-positive-fixnum", Vmost_positive_fixnum,
3899 doc: /* The largest value that is representable in a Lisp integer. */); 3899 doc: /* The largest value that is representable in a Lisp integer.
3900This variable cannot be set; trying to do so will signal an error. */);
3900 Vmost_positive_fixnum = make_number (MOST_POSITIVE_FIXNUM); 3901 Vmost_positive_fixnum = make_number (MOST_POSITIVE_FIXNUM);
3901 make_symbol_constant (intern_c_string ("most-positive-fixnum")); 3902 make_symbol_constant (intern_c_string ("most-positive-fixnum"));
3902 3903
3903 DEFVAR_LISP ("most-negative-fixnum", Vmost_negative_fixnum, 3904 DEFVAR_LISP ("most-negative-fixnum", Vmost_negative_fixnum,
3904 doc: /* The smallest value that is representable in a Lisp integer. */); 3905 doc: /* The smallest value that is representable in a Lisp integer.
3906This variable cannot be set; trying to do so will signal an error. */);
3905 Vmost_negative_fixnum = make_number (MOST_NEGATIVE_FIXNUM); 3907 Vmost_negative_fixnum = make_number (MOST_NEGATIVE_FIXNUM);
3906 make_symbol_constant (intern_c_string ("most-negative-fixnum")); 3908 make_symbol_constant (intern_c_string ("most-negative-fixnum"));
3907 3909