]> code.delx.au - gnu-emacs/commitdiff
reverting some spurious changes
authorjave <joakim@verona.se>
Wed, 31 Dec 2014 17:25:30 +0000 (18:25 +0100)
committerjave <joakim@verona.se>
Wed, 31 Dec 2014 17:25:30 +0000 (18:25 +0100)
lisp/progmodes/cc-mode.el
lisp/vc/vc-dir.el
make-dist
nt/INSTALL.OLD
src/.gdbinit

index a90dddd339969c7d8fa1f1d357b63beefa6969b7..a4824479b3cea6bb8b0ecb9654b18a6a4c5bd7aa 100644 (file)
@@ -1201,9 +1201,6 @@ Note that the style variables are always made local to the buffer."
   ;; `c-set-fl-decl-start' for the detailed functionality.
   (cons (c-set-fl-decl-start beg) end))
 
-(defvar c-standard-font-lock-fontify-region-function nil
-  "Standard value of `font-lock-fontify-region-function'")
-
 (defun c-font-lock-fontify-region (beg end &optional verbose)
   ;; Effectively advice around `font-lock-fontify-region' which extends the
   ;; region (BEG END), for example, to avoid context fontification chopping
@@ -1229,17 +1226,14 @@ Note that the style variables are always made local to the buffer."
                  (setq new-region (funcall fn new-beg new-end))
                  (setq new-beg (car new-region)  new-end (cdr new-region)))
                c-before-context-fontification-functions))))
-    (funcall c-standard-font-lock-fontify-region-function
+    (funcall (default-value 'font-lock-fontify-region-function)
             new-beg new-end verbose)))
 
 (defun c-after-font-lock-init ()
   ;; Put on `font-lock-mode-hook'.  This function ensures our after-change
-  ;; function will get executed before the font-lock one.  Amongst other
-  ;; things.
+  ;; function will get executed before the font-lock one.
   (remove-hook 'after-change-functions 'c-after-change t)
-  (add-hook 'after-change-functions 'c-after-change nil t)
-  (setq c-standard-font-lock-fontify-region-function
-       (default-value 'font-lock-fontify-region-function)))
+  (add-hook 'after-change-functions 'c-after-change nil t))
 
 (defun c-font-lock-init ()
   "Set up the font-lock variables for using the font-lock support in CC Mode.
index 08eb778f804e351b4a973583d6d62cf53d4b946d..c90bf1c2343eea30696ee2f442aa0c180cc09ccf 100644 (file)
@@ -954,8 +954,6 @@ If it is a file, return the corresponding cons for the file itself."
 
 (defvar use-vc-backend)  ;; dynamically bound
 
-;; Autoload cookie needed by desktop.el.
-;;;###autoload
 (define-derived-mode vc-dir-mode special-mode "VC dir"
   "Major mode for VC directory buffers.
 Marking/Unmarking key bindings and actions:
index 344de9c1ef92d49bae7c453fcd684e0b9214a20c..f287606c010fa728509f589c410c9a04114d79c4 100755 (executable)
--- a/make-dist
+++ b/make-dist
@@ -41,8 +41,8 @@ LC_MESSAGES=
 LANG=
 export LANGUAGE LC_ALL LC_MESSAGES LANG
 
-## Don't restrict access to any files.
-umask 0
+## Remove unnecessary restrictions on file access.
+umask 022
 
 update=yes
 check=yes
index 3e4ab27bd7cf1b2ecc54109f31decf7df70eec1f..a7ce57cc369ac4b8e6ca37c0ee30a7179f782fbd 100644 (file)
@@ -1,7 +1,7 @@
                    Building and Installing Emacs on Windows
                           (from 95 to 7 and beyond)
 
-  Copyright (C) 2001-2013 Free Software Foundation, Inc.
+  Copyright (C) 2001-2014 Free Software Foundation, Inc.
   See the end of the file for license conditions.
 
 *** This method of building Emacs is no longer supported. ***
index d259aa466e33ea8976198c5b6055ad9dcf3072ae..d76c3aa8e0503be5662c47bd723aa7b70a8bdf71 100644 (file)
@@ -982,27 +982,6 @@ document xscrollbar
 Print $ as a scrollbar pointer.
 end
 
-define xxwidget
-  if $argc == 1
-    xgetptr $arg0
-  else
-    xgetptr $
-  end
-  set $xw = (struct xwidget *) $ptr
-  print $xw
-  printf " Type: "
-  xprintsym $xw->type
-  echo \n
-  printf " Title: "
-  xgetptr $xw->title
-  set $title = (struct Lisp_String *) $ptr
-  xprintstr $title
-  echo \n
-end
-document xxwidget
-Print $ assuming it is a xwidget.
-end
-
 define xpr
   xtype
   if $type == Lisp_Int0 || $type == Lisp_Int1
@@ -1072,9 +1051,6 @@ define xpr
       if $vec == PVEC_HASH_TABLE
        xhashtable
       end
-      if $vec == PVEC_XWIDGET
-       xxwidget
-      end
     else
       xvector
     end