bugIdentica mode - Bugs: bug #28771, [PATCH] use bound variable in...

 
 

bug #28771: [PATCH] use bound variable in `identica-user-timeline'

Submitted by:  Sean Neakums <sneakums>
Submitted on:  Sat 30 Jan 2010 01:03:10 AM UTC  
 
Category: NoneSeverity: 3 - Normal
Item Group: NoneStatus: Fixed
Privacy: PublicAssigned to: None
Open/Closed: Closed

Add a New Comment(Rich Markup)
   

You are not logged in

Please log in, so followups can be emailed to you.

 

Sat 30 Jan 2010 01:03:10 AM UTC, original submission:

Flagged by the byte-compiler. Renamed to the more conventional
`from-user' while I was at it.

diff --git a/identica-mode.el b/identica-mode.el
index 398f444..02377e2 100644
--- a/identica-mode.el
+++ b/identica-mode.el
@@ -1307,10 +1307,11 @@ If STATUS-DATUM is already in DATA-VAR, return nil. If not, return t."

(defun identica-user-timeline ()
(interactive)
- (setq from_user (read-from-minibuffer "User [Empty for mine]: " nil nil nil nil nil t))
- (if (null from_user)
- (setq identica-method "user_timeline")
- (setq identica-method (concat "user_timeline/" from_user)))
+ (let ((from-user (read-from-minibuffer "User [Empty for mine]: "
+ nil nil nil nil nil t)))
+ (if (null from-user)
+ (setq identica-method "user_timeline")
+ (setq identica-method (concat "user_timeline/" from-user))))
(identica-get-timeline))

(defun identica-current-timeline ()

Sean Neakums <sneakums>

 

(Note: upload size limit is set to 16384 kB, after insertion of the required escape characters.)

Attach File(s):
   
   
Comment:
   

Attached Files
file #19570:  28771.patch added by sneakums (844B - application/octet-stream - attaching since the inline copy got mangled)

 

Depends on the following items: None found

Items that depend on this one: None found

 

Carbon-Copy List
  • -unavailable- added by gabrielsaldana (Updated the item)
  • -unavailable- added by sneakums (Submitted the item)
  •  

    Do you think this task is very important?
    If so, you can click here to add your encouragement to it.
    This task has 0 encouragements so far.

    Only logged-in users can vote.

     

    Please enter the title of George Orwell's famous dystopian book (it's a date):

     

     

    Follow 3 latest changes.

    Date Changed By Updated Field Previous Value => Replaced By
    Sun 31 Jan 2010 04:03:45 PM UTCgabrielsaldanaStatusNone=>Fixed
      Open/ClosedOpen=>Closed
    Sat 30 Jan 2010 10:54:52 AM UTCsneakumsAttached File-=>Added 28771.patch, #19570

    Back to the top


    Powered by Savane 3.1-cleanup1