emacs-diffs
[Top][All Lists]
Advanced

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

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


From: Dave Love
Subject: [Emacs-diffs] Changes to emacs/src/fns.c
Date: Mon, 02 Jun 2003 14:31:29 -0400

Index: emacs/src/fns.c
diff -c emacs/src/fns.c:1.338 emacs/src/fns.c:1.339
*** emacs/src/fns.c:1.338       Sat May 17 11:49:42 2003
--- emacs/src/fns.c     Mon Jun  2 14:31:29 2003
***************
*** 2510,2518 ****
  
  DEFUN ("set-char-table-default", Fset_char_table_default,
         Sset_char_table_default, 3, 3, 0,
!        doc: /* Set the default value in CHAR-TABLE for a generic character 
CHAR to VALUE.
  The generic character specifies the group of characters.
! See also the documentation of make-char.  */)
       (char_table, ch, value)
       Lisp_Object char_table, ch, value;
  {
--- 2510,2518 ----
  
  DEFUN ("set-char-table-default", Fset_char_table_default,
         Sset_char_table_default, 3, 3, 0,
!        doc: /* Set the default value in CHAR-TABLE for generic character CH 
to VALUE.
  The generic character specifies the group of characters.
! See also the documentation of `make-char'.  */)
       (char_table, ch, value)
       Lisp_Object char_table, ch, value;
  {
***************
*** 3221,3227 ****
  These floats are not multiplied by 100.
  
  If the 5-minute or 15-minute load averages are not available, return a
! shortened list, containing only those averages which are available.  */)
       (use_floats)
       Lisp_Object use_floats;
  {
--- 3221,3232 ----
  These floats are not multiplied by 100.
  
  If the 5-minute or 15-minute load averages are not available, return a
! shortened list, containing only those averages which are available.
! 
! An error is thrown if the load average can't be obtained.  In some
! cases making it work would require Emacs being installed setuid or
! setgid so that it can read kernel information, and that usually isn't
! advisable.  */)
       (use_floats)
       Lisp_Object use_floats;
  {
***************
*** 3478,3492 ****
         doc: /* Access locale data ITEM, if available.
  
  ITEM may be one of the following:
  `codeset', returning the character set as a string (locale item CODESET);
  `days', returning a 7-element vector of day names (locale items DAY_n);
  `months', returning a 12-element vector of month names (locale items MON_n);
  `paper', returning a list (WIDTH, HEIGHT) for the default paper size,
    where the width and height are in mm (locale items PAPER_WIDTH,
    PAPER_HEIGHT).
  
  If the system can't provide such information through a call to
! nl_langinfo(3), return nil.
  
  See also Info node `(libc)Locales'.
  
--- 3483,3501 ----
         doc: /* Access locale data ITEM, if available.
  
  ITEM may be one of the following:
+ 
  `codeset', returning the character set as a string (locale item CODESET);
+ 
  `days', returning a 7-element vector of day names (locale items DAY_n);
+ 
  `months', returning a 12-element vector of month names (locale items MON_n);
+ 
  `paper', returning a list (WIDTH, HEIGHT) for the default paper size,
    where the width and height are in mm (locale items PAPER_WIDTH,
    PAPER_HEIGHT).
  
  If the system can't provide such information through a call to
! nl_langinfo(3) or if ITEM isn't from the list above, return nil.
  
  See also Info node `(libc)Locales'.
  
***************
*** 3551,3557 ****
      }
  #endif        /* PAPER_WIDTH */
  #endif        /* HAVE_LANGINFO_CODESET*/
!     return Qnil;
  }
  
  /* base64 encode/decode functions (RFC 2045).
--- 3560,3566 ----
      }
  #endif        /* PAPER_WIDTH */
  #endif        /* HAVE_LANGINFO_CODESET*/
!   return Qnil;
  }
  
  /* base64 encode/decode functions (RFC 2045).




reply via email to

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