emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/lispref/variables.texi


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/lispref/variables.texi
Date: Fri, 04 Apr 2003 01:23:25 -0500

Index: emacs/lispref/variables.texi
diff -c emacs/lispref/variables.texi:1.37 emacs/lispref/variables.texi:1.38
*** emacs/lispref/variables.texi:1.37   Tue Dec  3 22:59:48 2002
--- emacs/lispref/variables.texi        Tue Feb  4 09:47:54 2003
***************
*** 1,7 ****
  @c -*-texinfo-*-
  @c This is part of the GNU Emacs Lisp Reference Manual.
  @c Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1998, 1999, 2000
! @c   Free Software Foundation, Inc. 
  @c See the file elisp.texi for copying conditions.
  @setfilename ../info/variables
  @node Variables, Functions, Control Structures, Top
--- 1,7 ----
  @c -*-texinfo-*-
  @c This is part of the GNU Emacs Lisp Reference Manual.
  @c Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1998, 1999, 2000
! @c   Free Software Foundation, Inc.
  @c See the file elisp.texi for copying conditions.
  @setfilename ../info/variables
  @node Variables, Functions, Control Structures, Top
***************
*** 207,213 ****
       @result{} 2
  @end group
  @group
! (let ((Y 1) 
        (Z Y))
    (list Y Z))
       @result{} (1 2)
--- 207,213 ----
       @result{} 2
  @end group
  @group
! (let ((Y 1)
        (Z Y))
    (list Y Z))
       @result{} (1 2)
***************
*** 767,773 ****
  x                   ; @address@hidden now has a global value.}
       @result{} 3
  @group
! (let ((x 5)) 
    (setq x 6)        ; @r{The local binding of @code{x} is set.}
    x)
       @result{} 6
--- 767,773 ----
  x                   ; @address@hidden now has a global value.}
       @result{} 3
  @group
! (let ((x 5))
    (setq x 6)        ; @r{The local binding of @code{x} is set.}
    x)
       @result{} 6
***************
*** 784,790 ****
  @group
  (setq x 10          ; @r{Notice that @code{x} is set before}
        y (1+ x))     ;   @r{the value of @code{y} is computed.}
!      @result{} 11             
  @end group
  @end example
  @end defspec
--- 784,790 ----
  @group
  (setq x 10          ; @r{Notice that @code{x} is set before}
        y (1+ x))     ;   @r{the value of @code{y} is computed.}
!      @result{} 11
  @end group
  @end example
  @end defspec
***************
*** 1350,1356 ****
      (mode-name . "Fundamental")
      @dots{}
  @group
!     ;; @r{Next, non-built-in buffer-local variables.} 
      ;; @r{This one is buffer-local and void:}
      foobar
      ;; @r{This one is buffer-local and nonvoid:}
--- 1350,1356 ----
      (mode-name . "Fundamental")
      @dots{}
  @group
!     ;; @r{Next, non-built-in buffer-local variables.}
      ;; @r{This one is buffer-local and void:}
      foobar
      ;; @r{This one is buffer-local and nonvoid:}




reply via email to

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