[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] /srv/bzr/emacs/trunk r102353: * lisp/cedet/semantic/wisent
From: |
Glenn Morris |
Subject: |
[Emacs-diffs] /srv/bzr/emacs/trunk r102353: * lisp/cedet/semantic/wisent/comp.el: Remove unnecessary eval-when-compiles. |
Date: |
Thu, 11 Nov 2010 19:23:58 -0800 |
User-agent: |
Bazaar (2.0.3) |
------------------------------------------------------------
revno: 102353
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Thu 2010-11-11 19:23:58 -0800
message:
* lisp/cedet/semantic/wisent/comp.el: Remove unnecessary eval-when-compiles.
modified:
lisp/cedet/ChangeLog
lisp/cedet/semantic/wisent/comp.el
=== modified file 'lisp/cedet/ChangeLog'
--- a/lisp/cedet/ChangeLog 2010-11-10 04:24:47 +0000
+++ b/lisp/cedet/ChangeLog 2010-11-12 03:23:58 +0000
@@ -1,3 +1,7 @@
+2010-11-12 Glenn Morris <address@hidden>
+
+ * semantic/wisent/comp.el: Remove unnecessary eval-when-compiles.
+
2010-11-10 Glenn Morris <address@hidden>
* semantic/bovine/c.el: Test system-type with memq.
=== modified file 'lisp/cedet/semantic/wisent/comp.el'
--- a/lisp/cedet/semantic/wisent/comp.el 2010-01-13 08:35:10 +0000
+++ b/lisp/cedet/semantic/wisent/comp.el 2010-11-12 03:23:58 +0000
@@ -1,7 +1,8 @@
;;; semantic/wisent/comp.el --- GNU Bison for Emacs - Grammar compiler
;; Copyright (C) 1984, 1986, 1989, 1992, 1995, 2000, 2001, 2002, 2003,
-;; 2004, 2005, 2006, 2007, 2009, 2010 Free Software Foundation, Inc.
+;; 2004, 2005, 2006, 2007, 2009, 2010
+;; Free Software Foundation, Inc.
;; Author: David Ponce <address@hidden>
;; Maintainer: David Ponce <address@hidden>
@@ -160,12 +161,6 @@
(not (zerop (logand (aref x (/ i wisent-BITS-PER-WORD))
(lsh 1 (% i wisent-BITS-PER-WORD))))))
-(eval-when-compile
- (or (fboundp 'noninteractive)
- ;; Silence the Emacs byte compiler
- (defun noninteractive nil))
- )
-
(defsubst wisent-noninteractive ()
"Return non-nil if running without interactive terminal."
(if (featurep 'xemacs)
@@ -205,7 +200,7 @@
`(with-current-buffer (wisent-log-buffer)
(erase-buffer)))
-(eval-when-compile (defvar byte-compile-current-file))
+(defvar byte-compile-current-file)
(defun wisent-source ()
"Return the current source file name or nil."
@@ -3536,5 +3531,4 @@
(provide 'semantic/wisent/comp)
-;; arch-tag: 758ea04c-ea97-466b-9b35-aea0861033c9
;;; semantic/wisent/comp.el ends here
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] /srv/bzr/emacs/trunk r102353: * lisp/cedet/semantic/wisent/comp.el: Remove unnecessary eval-when-compiles.,
Glenn Morris <=