# HG changeset patch # User Gerd Moellmann # Date 942668378 0 # Node ID 725d46ec6403d93f99ffa14e32c583fc09e0d4f3 # Parent a72b6b4a97bff954812dc17f3d4af505c01e81ff Use new backquote syntax. diff -r a72b6b4a97bf -r 725d46ec6403 lisp/hippie-exp.el --- a/lisp/hippie-exp.el Sun Nov 14 16:37:23 1999 +0000 +++ b/lisp/hippie-exp.el Mon Nov 15 12:19:38 1999 +0000 @@ -412,14 +412,14 @@ "Construct a function similar to `hippie-expand'. Make it use the expansion functions in TRY-LIST. An optional second argument VERBOSE non-nil makes the function verbose." - (` (function (lambda (arg) - (, (concat - "Try to expand text before point, using the following functions: \n" - (mapconcat 'prin1-to-string (eval try-list) ", "))) - (interactive "P") - (let ((hippie-expand-try-functions-list (, try-list)) - (hippie-expand-verbose (, verbose))) - (hippie-expand arg)))))) + `(function (lambda (arg) + ,(concat + "Try to expand text before point, using the following functions: \n" + (mapconcat 'prin1-to-string (eval try-list) ", ")) + (interactive "P") + (let ((hippie-expand-try-functions-list ,try-list) + (hippie-expand-verbose ,verbose)) + (hippie-expand arg))))) ;;; Here follows the try-functions and their requisites: @@ -732,8 +732,8 @@ (re-search-forward (he-line-search-regexp str strip-prompt) nil t))) - (setq result (buffer-substring-no-properties (match-beginning 2) - (match-end 2))) + (setq result (buffer-substring-no-properties (match-end 1) + (match-end 0))) (if (he-string-member result he-tried-table t) (setq result nil))) ; if already in table, ignore result))