]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/eval.c (Fsignal): Remove duplicate test.
authorLee Duhem <lee.duhem@gmail.com>
Thu, 4 Dec 2014 19:13:13 +0000 (14:13 -0500)
committerStefan Monnier <monnier@iro.umontreal.ca>
Thu, 4 Dec 2014 19:13:13 +0000 (14:13 -0500)
(Fautoload_do_load): Fix up docstring.

src/ChangeLog
src/eval.c

index 952e4abd230ca2356be36e5cc3c5c4eecf7bbaf2..0a8acf935bde6e57d95322e43c16b2587648667d 100644 (file)
@@ -1,3 +1,8 @@
+2014-12-04  Lee Duhem  <lee.duhem@gmail.com>  (tiny change)
+
+       * eval.c (Fsignal): Remove duplicate test.
+       (Fautoload_do_load): Fix up docstring.
+
 2014-12-02  Jan Djärv  <jan.h.d@swipnet.se>
 
        * nsterm.m (represented_filename, represented_frame): New variables.
index 929b98e9f7194c0ad3ff36ff2d4fe37f9b2e05ca..f0ad999f0f8bff295eeb6bd00cc29c16d4ae948f 100644 (file)
@@ -1536,8 +1536,7 @@ See also the function `condition-case'.  */)
          || NILP (clause)
          /* A `debug' symbol in the handler list disables the normal
             suppression of the debugger.  */
-         || (CONSP (clause) && CONSP (clause)
-             && !NILP (Fmemq (Qdebug, clause)))
+         || (CONSP (clause) && !NILP (Fmemq (Qdebug, clause)))
          /* Special handler that means "print a message and run debugger
             if requested".  */
          || EQ (h->tag_or_ch, Qerror)))
@@ -1921,7 +1920,7 @@ DEFUN ("autoload-do-load", Fautoload_do_load, Sautoload_do_load, 1, 3, 0,
 If non-nil, FUNNAME should be the symbol whose function value is FUNDEF,
 in which case the function returns the new autoloaded function value.
 If equal to `macro', MACRO-ONLY specifies that FUNDEF should only be loaded if
-it is defines a macro.  */)
+it defines a macro.  */)
   (Lisp_Object fundef, Lisp_Object funname, Lisp_Object macro_only)
 {
   ptrdiff_t count = SPECPDL_INDEX ();
@@ -3502,7 +3501,6 @@ backtrace_eval_unrewind (int distance)
   for (; distance > 0; distance--)
     {
       tmp += step;
-      /*  */
       switch (tmp->kind)
        {
          /* FIXME: Ideally we'd like to "temporarily unwind" (some of) those