From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Livin Stephen Sharma Newsgroups: gmane.emacs.help Subject: 'dabbrev-expand' ignores case for completions.. Date: Thu, 7 Jun 2007 04:06:34 +0530 Message-ID: <0F0B4601-899F-4447-A96C-F614AE0E1648@gmail.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 (Apple Message framework v752.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1181169518 20118 80.91.229.12 (6 Jun 2007 22:38:38 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 6 Jun 2007 22:38:38 +0000 (UTC) To: emacs-help gnu gnu Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Jun 07 00:38:36 2007 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 1Hw49A-0007p0-OJ for geh-help-gnu-emacs@m.gmane.org; Thu, 07 Jun 2007 00:38:32 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Hw49A-0005uA-4E for geh-help-gnu-emacs@m.gmane.org; Wed, 06 Jun 2007 18:38:32 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Hw47Z-0004g3-Ga for help-gnu-emacs@gnu.org; Wed, 06 Jun 2007 18:36:53 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Hw47U-0004bu-Kg for help-gnu-emacs@gnu.org; Wed, 06 Jun 2007 18:36:52 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Hw47U-0004bc-AW for help-gnu-emacs@gnu.org; Wed, 06 Jun 2007 18:36:48 -0400 Original-Received: from nz-out-0506.google.com ([64.233.162.234]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Hw47T-0007Wo-Uu for help-gnu-emacs@gnu.org; Wed, 06 Jun 2007 18:36:48 -0400 Original-Received: by nz-out-0506.google.com with SMTP id z3so284730nzf for ; Wed, 06 Jun 2007 15:36:47 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:mime-version:content-transfer-encoding:message-id:content-type:to:from:subject:date:x-mailer; b=jeIRuKUkhL2QUe1uO5IZiZKMKOcoWAfzYgwnPvlXt4OfbNU5gE5bSLYuXo26Iba5w36PPDlJp+Ue4dNXXZfWwm1N5FxAWWGyHQNi1KI41PIsc+TXdualntRgARGxIpPjwAUUGlWmHm+jRV/+OwbJqEIUmBYzjbBfoxjry5iW9vU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:mime-version:content-transfer-encoding:message-id:content-type:to:from:subject:date:x-mailer; b=rCJETezbvo1dCCblVntlYA3WPT6ZQQXe4bOa+d7Wq26j3WTx93+A0sFGYoE0sfpLe/bfdpFQJutOdRQzn+2gAtM0gYuvneiwY91mkFWEfI6Hq6gINurFI0Vi13Yg9pcuBRllz/8qgeSwCZHKfytW/+0FG5x1OA4eHPWB94aErAw= Original-Received: by 10.114.60.19 with SMTP id i19mr837959waa.1181169406662; Wed, 06 Jun 2007 15:36:46 -0700 (PDT) Original-Received: from ?192.168.1.2? ( [122.167.149.209]) by mx.google.com with ESMTP id q18sm5053966pog.2007.06.06.15.36.43; Wed, 06 Jun 2007 15:36:45 -0700 (PDT) X-Mailer: Apple Mail (2.752.2) X-detected-kernel: Linux 2.4-2.6 (Google crawlbot) 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:44724 Archived-At: In my Java class if I have a declaration partially typed-out like this: > // incomplete declaration > FileWriter fileWriter = new File and then I hit M-/ to try completion on the last word ('File') in the hope of getting 'FileWriter', i get this instead: > // why is the 'writer' text generated by 'M-/' lower-cased? > FileWriter fileWriter = new Filewriter Is there a way to have the case not dropped to lower? Thanks. --lss