org-mobile.el: Fix org-mobile-push with custom functions
This commit is contained in:
parent
f305a6f81a
commit
dc59011473
|
@ -575,8 +575,9 @@ The table of checksums is written to the file mobile-checksums."
|
|||
" " match "</after>"))
|
||||
settings))
|
||||
(push (list type match settings) new))
|
||||
((symbolp (nth 2 e))
|
||||
;; A user-defined function, not sure how to handle that yet
|
||||
((or (functionp (nth 2 e)) (symbolp (nth 2 e)))
|
||||
;; A user-defined function, which can do anything, so simply
|
||||
;; ignore it.
|
||||
)
|
||||
(t
|
||||
;; a block agenda
|
||||
|
|
Loading…
Reference in New Issue