emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [O] bug#18617: 24.3; loading simple-wiki-mode breaks org-mode


From: Kaushal Modi
Subject: Re: [O] bug#18617: 24.3; loading simple-wiki-mode breaks org-mode
Date: Sun, 21 Feb 2016 09:26:58 -0500

A quick look at the code shows that it pollutes the namespace with undeclared and un-let-bound variables like "tag" (and there could be more like that).

If we investigate further, we might find a culprit like that that's causing this problem.

(defun simple-wiki-get-tag ()
  (let (prompt)
    (if (and simple-wiki-tag-history (car simple-wiki-tag-history))
        (setq prompt (concat "Tag (" (car simple-wiki-tag-history) "): "))
      (setq prompt "Tag: "))
    (setq tag (completing-read prompt simple-wiki-tag-list nil nil ""
                               'simple-wiki-tag-history
                               (car simple-wiki-tag-history))))
  (unless (assoc tag simple-wiki-tag-list)
    (add-to-list 'simple-wiki-tag-list (cons tag nil)))
  tag)


reply via email to

[Prev in Thread] Current Thread [Next in Thread]