소스 검색

Fix quoting of arguments in run-query

Samuel W. Flint 5 년 전
부모
커밋
5ae59b49b2
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      library.org

+ 1 - 1
library.org

@@ -237,7 +237,7 @@ This handles git as needed, by first checking to see if the first argument is ~i
 #+Name: handle-query
 #+BEGIN_SRC sh
   function run_query {
-      recsel -t Book $@ ${LIBRARYFILE}
+      recsel -t Book "$@" ${LIBRARYFILE}
   }
 #+END_SRC