Browse Source

Footnotes: Allow "-" and "_" in footnote names.

These characters are now allowed in addition to word constituents.
Carsten Dominik 16 years ago
parent
commit
9255522b91
3 changed files with 13 additions and 9 deletions
  1. 2 0
      lisp/ChangeLog
  2. 9 9
      lisp/org-footnote.el
  3. 2 0
      lisp/org-macs.el

+ 2 - 0
lisp/ChangeLog

@@ -1,5 +1,7 @@
 2009-01-01  Carsten Dominik  <carsten.dominik@gmail.com>
 
+	* org-macs.el (org-re): Handle the [:word:] class.
+
 	* org-exp.el (org-export-preprocess-string): Call
 	`org-export-protect-colon-examples'.
 	(org-export-protect-colon-examples): Renamed from

+ 9 - 9
lisp/org-footnote.el

@@ -51,12 +51,13 @@
 	  "\\(?:"
 	  "\\([0-9]+\\)"
 	  "\\|"
-	  "\\(fn:\\(\\sw+?\\)?\\)\\(?::\\([^\]]*?\\)\\)?"
+	  (org-re "\\(fn:\\([-_[:word:]]+?\\)?\\)\\(?::\\([^\]]*?\\)\\)?")
 	  "\\)"
 	  "\\]")
   "Regular expression for matching footnotes.")
 
-(defconst org-footnote-definition-re "^\\(\\[\\([0-9]+\\|fn:\\sw+\\)\\]\\)"
+(defconst org-footnote-definition-re 
+  (org-re "^\\(\\[\\([0-9]+\\|fn:[-_[:word:]]+\\)\\]\\)")
   "Regular expression matching the definition of a footnote.")
 
 (defcustom org-footnote-section "Footnotes"
@@ -108,10 +109,7 @@ with start and label of the footnote if there is a definition at point."
   (save-excursion
     (end-of-line 1)
     (let ((lim (save-excursion (re-search-backward "^\\*+ \\|^[ \t]*$" nil t))))
-      (when (re-search-backward
-	     org-footnote-definition-re
-	     (save-excursion (re-search-backward "^\\*+ \\|^[ \t]*$" nil t))
-	     t)
+      (when (re-search-backward org-footnote-definition-re lim t)
 	(list (match-beginning 0) (match-string 2))))))
 
 (defun org-footnote-goto-definition (label)
@@ -288,13 +286,15 @@ referenced sequence."
 	   (if def
 	       (setq def (org-trim def))
 	     (save-excursion
-	       (if (not (re-search-forward (concat "^\\[" ref "\\]") nil t))
+	       (if (not (re-search-forward (concat "^\\[" (regexp-quote ref)
+						   "\\]") nil t))
 		   (setq def
 			 (format "FOOTNOTE DEFINITION NOT FOUND: %s" ref))
 		 (setq beg (match-beginning 0))
 		 (setq beg1 (match-end 0))
-		 (re-search-forward "^[ \t]*$\\|^\\[\\([0-9]+\\|fn:\\sw+\\)\\]"
-				    nil 'move)
+		 (re-search-forward
+		  (org-re "^[ \t]*$\\|^\\[\\([0-9]+\\|fn:[-_[:word:]]+\\)\\]")
+		  nil 'move)
 		 (setq def (buffer-substring beg1 (match-beginning 0)))
 		 (delete-region beg (match-beginning 0))))))
 	 (unless sort-only (replace-match (concat before "[" marker "]")))

+ 2 - 0
lisp/org-macs.el

@@ -48,6 +48,8 @@
 	(save-match-data
 	  (while (string-match "\\[:alnum:\\]" ss)
 	    (setq ss (replace-match "a-zA-Z0-9" t t ss)))
+	  (while (string-match "\\[:word:\\]" ss)
+	    (setq ss (replace-match "a-zA-Z0-9" t t ss)))
 	  (while (string-match "\\[:alpha:\\]" ss)
 	    (setq ss (replace-match "a-zA-Z" t t ss)))
 	  ss))