comparison src/lisp.h @ 38289:a35885785077

Change comment.
author Gerd Moellmann <gerd@gnu.org>
date Thu, 05 Jul 2001 09:24:35 +0000
parents 7ea4cdf2b1dc
children 86bc182c8651
comparison
equal deleted inserted replaced
38288:6934c28c6bc5 38289:a35885785077
1507 1507
1508 Otherwise, the element is a variable binding. 1508 Otherwise, the element is a variable binding.
1509 1509
1510 If the symbol field is a symbol, it is an ordinary variable binding. 1510 If the symbol field is a symbol, it is an ordinary variable binding.
1511 1511
1512 Otherwise, it should be a structure (SYMBOL . WHERE), which means 1512 Otherwise, it should be a structure (SYMBOL WHERE
1513 having bound a local value. If WHERE is nil this means we saw the 1513 . CURRENT-BUFFER), which means having bound a local value while
1514 CURRENT-BUFFER was active. If WHERE is nil this means we saw the
1514 default value when binding SYMBOL. WHERE being a buffer or frame 1515 default value when binding SYMBOL. WHERE being a buffer or frame
1515 means we saw a buffer-local or frame-local value. Other values 1516 means we saw a buffer-local or frame-local value. Other values of
1516 of WHERE mean an internal error. */ 1517 WHERE mean an internal error. */
1517 1518
1518 struct specbinding 1519 struct specbinding
1519 { 1520 {
1520 Lisp_Object symbol, old_value; 1521 Lisp_Object symbol, old_value;
1521 Lisp_Object (*func) P_ ((Lisp_Object)); 1522 Lisp_Object (*func) P_ ((Lisp_Object));