From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Wang Lei Newsgroups: gmane.emacs.help Subject: What does (looking-at "\\>") mean? Date: Sun, 25 Jan 2009 16:38:44 +0100 Message-ID: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1232900942 10926 80.91.229.12 (25 Jan 2009 16:29:02 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 25 Jan 2009 16:29:02 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sun Jan 25 17:04:47 2009 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1LR7St-0006Cv-W6 for geh-help-gnu-emacs@m.gmane.org; Sun, 25 Jan 2009 17:04:04 +0100 Original-Received: from localhost ([127.0.0.1]:43150 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LR7Rc-0003D8-Gz for geh-help-gnu-emacs@m.gmane.org; Sun, 25 Jan 2009 11:02:44 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LR74S-0004xW-9L for help-gnu-emacs@gnu.org; Sun, 25 Jan 2009 10:38:48 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LR74Q-0004xJ-Ty for help-gnu-emacs@gnu.org; Sun, 25 Jan 2009 10:38:48 -0500 Original-Received: from [199.232.76.173] (port=58627 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LR74Q-0004xG-PY for help-gnu-emacs@gnu.org; Sun, 25 Jan 2009 10:38:46 -0500 Original-Received: from rv-out-0708.google.com ([209.85.198.241]:38586) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LR74Q-00036q-EE for help-gnu-emacs@gnu.org; Sun, 25 Jan 2009 10:38:46 -0500 Original-Received: by rv-out-0708.google.com with SMTP id k29so6500900rvb.6 for ; Sun, 25 Jan 2009 07:38:44 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type:content-transfer-encoding; bh=IvENrcuyNXxQNSw6PQNpPJdM4O/9rhln6LyDyilEl8o=; b=UUckjgmdxgo/tAy3+Y2d7JSHS3fOhuvjacV3febyB1uiXkE9KtM32RkBTaeV+n1wh4 LkRqloCt+NIrrLqU4iRBdzs5Dcg91ntxI3/usLethKJo2GwGCRRs7JyNOIbIyOql4g68 iVMtncfnCh+W6KsY0KG1RB4CQJQk4790OcTQY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type :content-transfer-encoding; b=uTgJuz9aMPIE8YDxnbv/owRKgfZCvYrVqVYUCsSDX2O7MQPF9McvO46FTg3ngX/gCN eV0aMtnYYITiU8V7uiMYzWRPd2ju91SPLEHwDHAc8kIYK2BY967K2U/e9r/fWrI2Rt9E x3VW1gVuZZMbIRPwTGs+VAQDTHFX0yc0ngSOM= Original-Received: by 10.141.197.14 with SMTP id z14mr2575902rvp.203.1232897924657; Sun, 25 Jan 2009 07:38:44 -0800 (PST) X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 2) X-Mailman-Approved-At: Sun, 25 Jan 2009 10:59:23 -0500 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:61625 Hi, all. I copied a piece of code like this: (defun my-indent-or-complete () (interactive) (if (looking-at "\\>") (hippie-expand nil) (indent-for-tab-command))) But, I can't figure out what this "\\>" means. Could someone give me a explanation ? Many thanks! -- Regards Lei