-
Notifications
You must be signed in to change notification settings - Fork 76
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
the logic may be wrong? #153
Comments
I've checked this block of code, which handles the files attached in a post. So far I haven't find anything wrong. Could you please explain your thoughts further? |
This is one complete shouldn't last 4 statements be wrapped in (progn
(setq file-web-url
(cdr (assoc "url"
(metaweblog-upload-file
org2blog/wp-server-xmlrpc-url
org2blog/wp-server-userid
org2blog/wp-server-pass
org2blog/wp-server-blogid
(get-file-properties file-name)))))
(goto-char (point-max))
(newline)
(insert (concat "#+" file-name " " file-web-url))
) |
It seems to me that the outer progn has taken care of them (I might misunderstand progn though).
|
(setq file-web-url These 4 lines exists in an "if" statement. Is this desired logic? On Tue, May 6, 2014 at 8:01 PM, Wenshan notifications@github.com wrote:
help me, help you. |
I see what you mean, good point.
In the last sentence of the above paragraph, it mentions that the then-part of an 'if' should be inside a progn.
Therefore I think the lines you mentioned are actually in the What do you think? |
Yes, got On Wed, May 7, 2014 at 10:49 AM, Wenshan notifications@github.com wrote:
help me, help you. |
Can I close this issue?
|
check the code below copied from org2blog.el
The text was updated successfully, but these errors were encountered: