emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/src/editfns.c


From: Juanma Barranquero
Subject: [Emacs-diffs] Changes to emacs/src/editfns.c
Date: Mon, 07 Jun 2004 16:34:25 -0400

Index: emacs/src/editfns.c
diff -c emacs/src/editfns.c:1.373 emacs/src/editfns.c:1.374
*** emacs/src/editfns.c:1.373   Fri May  7 22:27:57 2004
--- emacs/src/editfns.c Mon Jun  7 20:33:00 2004
***************
*** 1218,1224 ****
  DEFUN ("user-login-name", Fuser_login_name, Suser_login_name, 0, 1, 0,
         doc: /* Return the name under which the user logged in, as a string.
  This is based on the effective uid, not the real uid.
! Also, if the environment variable LOGNAME or USER is set,
  that determines the value of this function.
  
  If optional argument UID is an integer, return the login name of the user
--- 1218,1224 ----
  DEFUN ("user-login-name", Fuser_login_name, Suser_login_name, 0, 1, 0,
         doc: /* Return the name under which the user logged in, as a string.
  This is based on the effective uid, not the real uid.
! Also, if the environment variables LOGNAME or USER are set,
  that determines the value of this function.
  
  If optional argument UID is an integer, return the login name of the user
***************
*** 1430,1436 ****
  
  DEFUN ("float-time", Ffloat_time, Sfloat_time, 0, 1, 0,
         doc: /* Return the current time, as a float number of seconds since 
the epoch.
! If an argument is given, it specifies a time to convert to float
  instead of the current time.  The argument should have the forms:
   (HIGH . LOW) or (HIGH LOW USEC) or (HIGH LOW . USEC).
  Thus, you can use times obtained from `current-time'
--- 1430,1436 ----
  
  DEFUN ("float-time", Ffloat_time, Sfloat_time, 0, 1, 0,
         doc: /* Return the current time, as a float number of seconds since 
the epoch.
! If SPECIFIED-TIME is given, it is the time to convert to float
  instead of the current time.  The argument should have the forms:
   (HIGH . LOW) or (HIGH LOW USEC) or (HIGH LOW . USEC).
  Thus, you can use times obtained from `current-time'
***************
*** 1660,1666 ****
  The intervening arguments are ignored.
  This feature lets (apply 'encode-time (decode-time ...)) work.
  
! Out-of-range values for SEC, MINUTE, HOUR, DAY, or MONTH are allowed;
  for example, a DAY of 0 means the day preceding the given month.
  Year numbers less than 100 are treated just like other year numbers.
  If you want them to stand for years in this century, you must do that 
yourself.
--- 1660,1666 ----
  The intervening arguments are ignored.
  This feature lets (apply 'encode-time (decode-time ...)) work.
  
! Out-of-range values for SECOND, MINUTE, HOUR, DAY, or MONTH are allowed;
  for example, a DAY of 0 means the day preceding the given month.
  Year numbers less than 100 are treated just like other year numbers.
  If you want them to stand for years in this century, you must do that 
yourself.
***************
*** 1745,1752 ****
  However, see also the functions `decode-time' and `format-time-string'
  which provide a much more powerful and general facility.
  
! If an argument is given, it specifies a time to format
! instead of the current time.  The argument should have the form:
    (HIGH . LOW)
  or the form:
    (HIGH LOW . IGNORED).
--- 1745,1752 ----
  However, see also the functions `decode-time' and `format-time-string'
  which provide a much more powerful and general facility.
  
! If SPECIFIED-TIME is given, it is a time to format instead
! of the current time.  The argument should have the form:
    (HIGH . LOW)
  or the form:
    (HIGH LOW . IGNORED).
***************
*** 1801,1807 ****
  OFFSET is an integer number of seconds ahead of UTC (east of Greenwich).
      A negative value means west of Greenwich.
  NAME is a string giving the name of the time zone.
! If an argument is given, it specifies when the time zone offset is determined
  instead of using the current time.  The argument should have the form:
    (HIGH . LOW)
  or the form:
--- 1801,1807 ----
  OFFSET is an integer number of seconds ahead of UTC (east of Greenwich).
      A negative value means west of Greenwich.
  NAME is a string giving the name of the time zone.
! If SPECIFIED-TIME is given, the time zone offset is determined from it
  instead of using the current time.  The argument should have the form:
    (HIGH . LOW)
  or the form:
***************
*** 2349,2356 ****
         1, 3, 0,
         doc: /* Insert before point a substring of the contents of BUFFER.
  BUFFER may be a buffer or a buffer name.
! Arguments START and END are character numbers specifying the substring.
! They default to the beginning and the end of BUFFER.  */)
       (buffer, start, end)
       Lisp_Object buffer, start, end;
  {
--- 2349,2356 ----
         1, 3, 0,
         doc: /* Insert before point a substring of the contents of BUFFER.
  BUFFER may be a buffer or a buffer name.
! Arguments START and END are character positions specifying the substring.
! They default to the values of (point-min) and (point-max) in BUFFER.  */)
       (buffer, start, end)
       Lisp_Object buffer, start, end;
  {
***************
*** 2827,2832 ****
--- 2827,2833 ----
  
  DEFUN ("delete-region", Fdelete_region, Sdelete_region, 2, 2, "r",
         doc: /* Delete the text between point and mark.
+ 
  When called from a program, expects two arguments,
  positions (integers or markers) specifying the stretch to be deleted.  */)
       (start, end)
***************
*** 3875,3885 ****
  }
  
  DEFUN ("transpose-regions", Ftranspose_regions, Stranspose_regions, 4, 5, 0,
!        doc: /* Transpose region START1 to END1 with START2 to END2.
  The regions may not be overlapping, because the size of the buffer is
  never changed in a transposition.
  
! Optional fifth arg LEAVE_MARKERS, if non-nil, means don't update
  any markers that happen to be located in the regions.
  
  Transposing beyond buffer boundaries is an error.  */)
--- 3876,3886 ----
  }
  
  DEFUN ("transpose-regions", Ftranspose_regions, Stranspose_regions, 4, 5, 0,
!        doc: /* Transpose region STARTR1 to ENDR1 with STARTR2 to ENDR2.
  The regions may not be overlapping, because the size of the buffer is
  never changed in a transposition.
  
! Optional fifth arg LEAVE-MARKERS, if non-nil, means don't update
  any markers that happen to be located in the regions.
  
  Transposing beyond buffer boundaries is an error.  */)




reply via email to

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