[Refdb-cvs] CVS: elisp refdb-mode.el,1.17,1.18
Status: Beta
Brought to you by:
mhoenicka
From: Markus H. <mho...@us...> - 2005-11-19 19:25:11
|
Update of /cvsroot/refdb/elisp In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10817 Modified Files: refdb-mode.el Log Message: fix typo in getnote-on-region() Index: refdb-mode.el =================================================================== RCS file: /cvsroot/refdb/elisp/refdb-mode.el,v retrieving revision 1.17 retrieving revision 1.18 diff -u -U2 -r1.17 -r1.18 --- refdb-mode.el 12 Nov 2005 21:25:27 -0000 1.17 +++ refdb-mode.el 19 Nov 2005 19:25:04 -0000 1.18 @@ -3444,8 +3444,8 @@ (if (mark) (progn - (let ((concat - refdb-regexp-query-string - (value (buffer-substring (mark) (point))) - refdb-regexp-query-string)) + (let ((value (concat + refdb-regexp-query-string + (buffer-substring (mark) (point)) + refdb-regexp-query-string))) (if refdb-use-regexp-match-in-getref-on-region-flag (refdb-getnote-by-field-regexp field value) |