Add hooks for gcc handling
[gnus] / lisp / uudecode.el
index b1c2a7b..d4bf89f 100644 (file)
@@ -1,7 +1,6 @@
 ;;; uudecode.el -- elisp native uudecode
 
-;; Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004,
-;;   2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
+;; Copyright (C) 1998-2012 Free Software Foundation, Inc.
 
 ;; Author: Shenghuo Zhu <zsh@cs.rochester.edu>
 ;; Keywords: uudecode news
@@ -198,10 +197,10 @@ If FILE-NAME is non-nil, save the result to FILE-NAME."
          (cond
           (done)
           ((> 0 remain)
-           (error "uucode line ends unexpectly")
+           (error "uucode line ends unexpectedly")
            (setq done t))
           ((and (= (point) end) (not done))
-           ;;(error "uucode ends unexpectly")
+           ;;(error "uucode ends unexpectedly")
            (setq done t))
           ((= counter 3)
            (setq result (cons
@@ -236,5 +235,4 @@ If FILE-NAME is non-nil, save the result to FILE-NAME."
 
 (provide 'uudecode)
 
-;; arch-tag: e1f09ed5-62b4-4677-9f13-4e81c4fe8ce3
 ;;; uudecode.el ends here