emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lispintro/emacs-lisp-intro.texi,v


From: Robert J. Chassell
Subject: [Emacs-diffs] Changes to emacs/lispintro/emacs-lisp-intro.texi,v
Date: Tue, 31 Oct 2006 17:59:55 +0000

CVSROOT:        /cvsroot/emacs
Module name:    emacs
Changes by:     Robert J. Chassell <bob>        06/10/31 17:59:55

Index: emacs-lisp-intro.texi
===================================================================
RCS file: /cvsroot/emacs/emacs/lispintro/emacs-lisp-intro.texi,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -b -r1.44 -r1.45
--- emacs-lisp-intro.texi       31 Oct 2006 16:41:49 -0000      1.44
+++ emacs-lisp-intro.texi       31 Oct 2006 17:59:55 -0000      1.45
@@ -24,7 +24,7 @@
 
 @comment %**end of header
 
address@hidden edition-number 3.00
address@hidden edition-number 3.01
 @set update-date 2006 Oct 31
 
 @ignore
@@ -731,7 +731,7 @@
 * Loading Files::               Load (i.e., evaluate) files automatically.
 * Autoload::                    Make functions available.
 * Simple Extension::            Define a function; bind it to a key.
-* X11 Colors::                  Colors in version 19 in X.
+* X11 Colors::                  Colors in X.
 * Miscellaneous::
 * Mode Line::                   How to customize your mode line.
 
@@ -4526,6 +4526,10 @@
 the second.  In all cases, both arguments must be numbers or markers
 (markers indicate positions in buffers).
 
address@hidden =
+The @code{=} function tests whether two arguments, , both numbers or
+markers, are equal.
+
 @item string<
 @itemx string-lessp
 @itemx string=
@@ -15730,15 +15734,6 @@
 @end group
 @end smallexample
 
address@hidden
-(directory-files-and-attributes "/usr/local/src/emacs/lisp/mail/")  -->
-(("." t 3 1000 100 (17733 1296) (17718 8756) (17718 8756) 4096 "drwxr-xr-x" 
nil 1273504 773))
-
-(directory-files-and-attributes "/usr/local/src/emacs/lisp/") -->
-(... ("mail" t 3 1000 100 (17733 1296) (17718 8756) (17718 8756) 4096
-"drwxr-xr-x" nil 1273504 773) ...)
address@hidden ignore
-
 @need 1200
 On the other hand, @file{mail/} is a directory within the @file{lisp/}
 directory.  The beginning of its listing looks like this:
@@ -18308,13 +18303,12 @@
 characters; this length works well in a typical 80 column wide
 window.)
 
address@hidden:eval} was a new feature in GNU Emacs version 21.  It says to
-evaluate the following form and use the result as a string to display.
-In this case, the expression displays the first component of the full
-system name.  The end of the first component is a @samp{.} (`period'),
-so I use the @code{string-match} function to tell me the length of the
-first component.  The substring from the zeroth character to that
-length is the name of the machine.
address@hidden:eval} says to evaluate the following form and use the result as
+a string to display.  In this case, the expression displays the first
+component of the full system name.  The end of the first component is
+a @samp{.} (`period'), so I use the @code{string-match} function to
+tell me the length of the first component.  The substring from the
+zeroth character to that length is the name of the machine.
 
 @need 1250
 This is the expression:




reply via email to

[Prev in Thread] Current Thread [Next in Thread]