emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/lisp/cus-start.el


From: Lute Kamstra
Subject: [Emacs-diffs] Changes to emacs/lisp/cus-start.el
Date: Mon, 14 Feb 2005 07:13:13 -0500

Index: emacs/lisp/cus-start.el
diff -c emacs/lisp/cus-start.el:1.65 emacs/lisp/cus-start.el:1.66
*** emacs/lisp/cus-start.el:1.65        Mon Feb 14 09:49:38 2005
--- emacs/lisp/cus-start.el     Mon Feb 14 12:13:12 2005
***************
*** 1,6 ****
  ;;; cus-start.el --- define customization properties of builtins
  ;;
! ;; Copyright (C) 1997, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
  ;;
  ;; Author: Per Abrahamsen <address@hidden>
  ;; Keywords: internal
--- 1,6 ----
  ;;; cus-start.el --- define customization properties of builtins
  ;;
! ;; Copyright (C) 1997, 1999, 2000, 2001, 2002, 2005 Free Software Foundation, 
Inc.
  ;;
  ;; Author: Per Abrahamsen <address@hidden>
  ;; Keywords: internal
***************
*** 311,317 ****
          ;; use the current value as the standard value.
          standard (if (nthcdr 4 this)
                       (nth 4 this)
!                    (funcall quoter (default-value symbol)))
          ;; Don't complain about missing variables which are
          ;; irrelevant to this platform.
          native-p (save-match-data
--- 311,318 ----
          ;; use the current value as the standard value.
          standard (if (nthcdr 4 this)
                       (nth 4 this)
!                    (when (boundp symbol)
!                      (funcall quoter (default-value symbol))))
          ;; Don't complain about missing variables which are
          ;; irrelevant to this platform.
          native-p (save-match-data




reply via email to

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