]> git.eshelyaron.com Git - emacs.git/commitdiff
* net/newst-treeview.el (newsticker--treeview-load): Remove bogus `if'.
authorJuanma Barranquero <lekktu@gmail.com>
Tue, 17 Feb 2009 14:58:15 +0000 (14:58 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Tue, 17 Feb 2009 14:58:15 +0000 (14:58 +0000)
lisp/ChangeLog
lisp/net/newst-treeview.el

index fc2da36c503e74714b27ad9cecc85bc21cd9dfea..1da764d9ce9945891b890151202d868778f47bbb 100644 (file)
@@ -1,5 +1,7 @@
 2009-02-17  Juanma Barranquero  <lekktu@gmail.com>
 
+       * net/newst-treeview.el (newsticker--treeview-load): Remove bogus `if'.
+
        * progmodes/cc-menus.el (cc-imenu-objc-function): Doc fix.
 
 2009-02-17  Miles Bader  <miles@gnu.org>
index 572387f60f234e8abaa92b89406c6476762be139..dc97b5e8e3d80a3231a919e581e91ee74fc27b23 100644 (file)
@@ -1261,9 +1261,9 @@ Note: does not update the layout."
               (concat newsticker-dir "/groups")))
          (buf (and (file-exists-p filename)
                    (find-file-noselect filename))))
-    (if (and (file-exists-p newsticker-groups-filename)
-             (y-or-n-p (format "Delete old newsticker groups file? "))
-             (delete-file newsticker-groups-filename)))
+    (and (file-exists-p newsticker-groups-filename)
+        (y-or-n-p (format "Delete old newsticker groups file? "))
+        (delete-file newsticker-groups-filename))
     (when buf
       (set-buffer buf)
       (goto-char (point-min))
@@ -1551,7 +1551,7 @@ is activated."
            (widget-apply-action node)))))
 
 (defun newsticker--treeview-first-feed ()
-  "Jump to the depth-first feed in the newsticker-groups tree." 
+  "Jump to the depth-first feed in the newsticker-groups tree."
   (newsticker-treeview-jump
    (car (reverse (newsticker--group-get-feeds newsticker-groups t)))))
 
@@ -1603,7 +1603,7 @@ Return t if a new feed was activated, nil otherwise."
               (not (eq new cur)))
           nil))
       nil)))
-  
+
 (defun newsticker-treeview-next-page ()
   "Scroll item buffer."
   (interactive)