aboutsummaryrefslogtreecommitdiffstats
path: root/doc/lispref
diff options
context:
space:
mode:
authorJoakim Verona2011-09-19 11:37:46 +0200
committerJoakim Verona2011-09-19 11:37:46 +0200
commit4caed0bee59613be5d2a6c4afabcdc43222f953e (patch)
treed0c1debf666ef2107492e6cdd2bc8d6bb17de8a2 /doc/lispref
parentc139d20a0c582a2c8fe3766128092c32b692ac23 (diff)
parentc5b01d8c63cfd14c95a029540a6fb0da84537726 (diff)
downloademacs-4caed0bee59613be5d2a6c4afabcdc43222f953e.tar.gz
emacs-4caed0bee59613be5d2a6c4afabcdc43222f953e.zip
upstream
Diffstat (limited to 'doc/lispref')
-rw-r--r--doc/lispref/ChangeLog20
-rw-r--r--doc/lispref/errors.texi3
-rw-r--r--doc/lispref/frames.texi8
-rw-r--r--doc/lispref/numbers.texi4
-rw-r--r--doc/lispref/tips.texi4
5 files changed, 32 insertions, 7 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index 71dc8a8ff89..09958f6b7e0 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,23 @@
12011-09-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
2
3 * errors.texi (Standard Errors): Remove apparent placeholder text
4 (bug#9491).
5
62011-09-18 Chong Yidong <cyd@stupidchicken.com>
7
8 * frames.texi (Management Parameters): Fix description of
9 icon-type parameter.
10
112011-09-17 Chong Yidong <cyd@stupidchicken.com>
12
13 * tips.texi (Key Binding Conventions): Don't bind a key sequence
14 ending in C-g. Suggested by Edward O'Connor.
15
162011-09-17 Eli Zaretskii <eliz@gnu.org>
17
18 * numbers.texi (Integer Basics): Add indexing for
19 most-positive-fixnum and most-negative-fixnum. (Bug#9525)
20
12011-09-14 Dani Moncayo <dmoncayo@gmail.com> (tiny change) 212011-09-14 Dani Moncayo <dmoncayo@gmail.com> (tiny change)
2 22
3 * lists.texi (Sets And Lists): Fix typo. (Bug#9393) 23 * lists.texi (Sets And Lists): Fix typo. (Bug#9393)
diff --git a/doc/lispref/errors.texi b/doc/lispref/errors.texi
index 2c7549d0443..98967b708b3 100644
--- a/doc/lispref/errors.texi
+++ b/doc/lispref/errors.texi
@@ -28,9 +28,6 @@ condition @code{error}, because quitting is not considered an error.
28handled. 28handled.
29 29
30@table @code 30@table @code
31@item @var{symbol}
32@var{string}; @var{reference}.
33
34@item error 31@item error
35@code{"error"}@* 32@code{"error"}@*
36@xref{Errors}. 33@xref{Errors}.
diff --git a/doc/lispref/frames.texi b/doc/lispref/frames.texi
index e799cfa6b7f..d619b92e4d3 100644
--- a/doc/lispref/frames.texi
+++ b/doc/lispref/frames.texi
@@ -779,10 +779,10 @@ Whether deselecting the frame lowers it (non-@code{nil} means yes).
779 779
780@vindex icon-type, a frame parameter 780@vindex icon-type, a frame parameter
781@item icon-type 781@item icon-type
782The type of icon to use for this frame when it is iconified. If the 782The type of icon to use for this frame. If the value is a string,
783value is a string, that specifies a file containing a bitmap to use. 783that specifies a file containing a bitmap to use; @code{nil} specifies
784Any other non-@code{nil} value specifies the default bitmap icon (a 784no icon (in which case the window manager decides what to show); any
785picture of a gnu); @code{nil} specifies a text icon. 785other non-@code{nil} value specifies the default Emacs icon.
786 786
787@vindex icon-name, a frame parameter 787@vindex icon-name, a frame parameter
788@item icon-name 788@item icon-name
diff --git a/doc/lispref/numbers.texi b/doc/lispref/numbers.texi
index 65921f444e0..3efddebffb4 100644
--- a/doc/lispref/numbers.texi
+++ b/doc/lispref/numbers.texi
@@ -148,11 +148,15 @@ arguments to such functions may be either numbers or markers, we often
148give these arguments the name @var{number-or-marker}. When the argument 148give these arguments the name @var{number-or-marker}. When the argument
149value is a marker, its position value is used and its buffer is ignored. 149value is a marker, its position value is used and its buffer is ignored.
150 150
151@cindex largest Lisp integer number
152@cindex maximum Lisp integer number
151@defvar most-positive-fixnum 153@defvar most-positive-fixnum
152The value of this variable is the largest integer that Emacs Lisp 154The value of this variable is the largest integer that Emacs Lisp
153can handle. 155can handle.
154@end defvar 156@end defvar
155 157
158@cindex smallest Lisp integer number
159@cindex minimum Lisp integer number
156@defvar most-negative-fixnum 160@defvar most-negative-fixnum
157The value of this variable is the smallest integer that Emacs Lisp can 161The value of this variable is the smallest integer that Emacs Lisp can
158handle. It is negative. 162handle. It is negative.
diff --git a/doc/lispref/tips.texi b/doc/lispref/tips.texi
index be37eb2034b..fd875b45be9 100644
--- a/doc/lispref/tips.texi
+++ b/doc/lispref/tips.texi
@@ -320,6 +320,10 @@ any context prevents recognition of escape sequences as function keys in
320that context. 320that context.
321 321
322@item 322@item
323Similarly, don't bind a key sequence ending in @key{C-g}, since that
324is commonly used to cancel a key sequence.
325
326@item
323Anything which acts like a temporary mode or state which the user can 327Anything which acts like a temporary mode or state which the user can
324enter and leave should define @kbd{@key{ESC} @key{ESC}} or 328enter and leave should define @kbd{@key{ESC} @key{ESC}} or
325@kbd{@key{ESC} @key{ESC} @key{ESC}} as a way to escape. 329@kbd{@key{ESC} @key{ESC} @key{ESC}} as a way to escape.