emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] emacs/lisp ChangeLog emulation/tpu-edt.el


From: Glenn Morris
Subject: [Emacs-diffs] emacs/lisp ChangeLog emulation/tpu-edt.el
Date: Tue, 22 Sep 2009 02:28:46 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Glenn Morris <gm>       09/09/22 02:28:46

Modified files:
        lisp           : ChangeLog 
        lisp/emulation : tpu-edt.el 

Log message:
        (tpu-copy-keyfile): Fix condition-case handler.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/ChangeLog?cvsroot=emacs&r1=1.16227&r2=1.16228
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/emulation/tpu-edt.el?cvsroot=emacs&r1=1.68&r2=1.69

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/emacs/emacs/lisp/ChangeLog,v
retrieving revision 1.16227
retrieving revision 1.16228
diff -u -b -r1.16227 -r1.16228
--- ChangeLog   22 Sep 2009 00:06:28 -0000      1.16227
+++ ChangeLog   22 Sep 2009 02:28:43 -0000      1.16228
@@ -1,3 +1,58 @@
+2009-09-22  Glenn Morris  <address@hidden>
+
+       * emulation/tpu-edt.el (tpu-copy-keyfile): Fix condition-case handler.
+
+       * emacs-lisp/elint.el (elint): New custom group.
+       (elint-log-buffer): Make it a defcustom.
+       (elint-scan-preloaded, elint-ignored-warnings)
+       (elint-directory-skip-re): New options.
+       (elint-builtin-variables): Doc fix.
+       (elint-preloaded-env): New variable.
+       (elint-unknown-builtin-args): Add an entry for encode-time.
+       (elint-extra-errors): Make it a variable rather than a constant.
+       (elint-preloaded-skip-re): New constant.
+       (elint-directory): Skip files matching elint-directory-skip-re.
+       (elint-features): New variable, local to linted buffers.
+       (elint-update-env): Initialize elint-features.  Possibly add
+       elint-preloaded-env to the buffer's environment.
+       (elint-get-top-forms): Bind elint-current-pos, for log messages.
+       Skip quoted forms.
+       (elint-init-form): New function, extracted from elint-init-env.
+       Make non-list forms a warning rather than an error.
+       Add the mode-map for define-derived-mode.  Handle define-minor-mode,
+       easy-menu-define, put that adds an error-condition, and provide.
+       When requiring cl, also require cl-macs.  Really require cl, to handle
+       some cl macros.  Store required libraries in the list elint-features,
+       so as not to re-load them.  Treat cc-require like require.
+       (elint-init-env): Call elint-init-form to do the work.
+       Handle eval-and-compile and such like.
+       (elint-add-required-env): Do not clear messages.
+       (elint-special-forms): Add handlers for function, defalias, if, when,
+       unless, and, or.
+       (elint-form): Add optional argument to ignore elint-special-forms,
+       useful to prevent recursive calls from handlers.  Doc fix.
+       Respect elint-ignored-warnings.
+       (elint-form): Respect elint-ignored-warnings.
+       (elint-bound-variable, elint-bound-function): New variables.
+       (elint-unbound-variable): Respect elint-bound-variable.
+       (elint-get-args): Respect elint-bound-function.
+       (elint-check-cond-form): Add some simple handling for (f)boundp and
+       featurep tests.
+       (elint-check-defalias-form): New handler.
+       (elint-check-let-form): Make an empty let a warning rather than an
+       error.
+       (elint-check-setq-form): Make an empty setq a warning rather than an
+       error.  Respect elint-ignored-warnings.
+       (elint-check-defvar-form): Accept null doc-strings.
+       (elint-check-conditional-form): New handler.  Does some simple-minded
+       checking of featurep and (f)boundp tests.
+       (elint-put-function-args): New function.
+       (elint-initialize): Use elint-scan-doc-file rather than
+       elint-find-builtin-variables.  Use elint-put-function-args.
+       Possibly scan preloaded-file-list.
+       (elint-scan-doc-file): Rename from elint-find-builtin-variables and
+       extend to handle functions as well.
+
 2009-09-22  Lennart Borgman  <address@hidden>
 
        * linum.el (linum-delete-overlays, linum-update-window):

Index: emulation/tpu-edt.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/emulation/tpu-edt.el,v
retrieving revision 1.68
retrieving revision 1.69
diff -u -b -r1.68 -r1.69
--- emulation/tpu-edt.el        6 Jan 2009 02:13:41 -0000       1.68
+++ emulation/tpu-edt.el        22 Sep 2009 02:28:46 -0000      1.69
@@ -1,7 +1,7 @@
 ;;; tpu-edt.el --- Emacs emulating TPU emulating EDT
 
-;; Copyright (C) 1993, 1994, 1995, 2000, 2001, 2002, 2003, 2004,
-;;   2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+;; Copyright (C) 1993, 1994, 1995, 2000, 2001, 2002, 2003, 2004, 2005,
+;;   2006, 2007, 2008, 2009  Free Software Foundation, Inc.
 
 ;; Author: Rob Riepel <address@hidden>
 ;; Maintainer: Rob Riepel <address@hidden>
@@ -2374,7 +2374,7 @@
     (and (tpu-y-or-n-p "Copy key definitions to the new file now? ")
         (condition-case conditions
              (copy-file oldname newname)
-          (tpu-error (message "Sorry, couldn't copy - %s." (cdr conditions)))))
+          (error (message "Sorry, couldn't copy - %s." (cdr conditions)))))
     (kill-buffer "*TPU-Notice*")))
 
 (defvar tpu-edt-old-global-values nil)




reply via email to

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