From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Juanma Barranquero Newsgroups: gmane.emacs.devel Subject: bzr warning for modified file Date: Sat, 21 Apr 2012 19:11:54 +0200 Message-ID: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Trace: dough.gmane.org 1335028363 4339 80.91.229.3 (21 Apr 2012 17:12:43 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Sat, 21 Apr 2012 17:12:43 +0000 (UTC) To: Emacs developers Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Apr 21 19:12:43 2012 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1SLdrW-00052U-DR for ged-emacs-devel@m.gmane.org; Sat, 21 Apr 2012 19:12:42 +0200 Original-Received: from localhost ([::1]:60991 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SLdrV-0007x9-FE for ged-emacs-devel@m.gmane.org; Sat, 21 Apr 2012 13:12:41 -0400 Original-Received: from eggs.gnu.org ([208.118.235.92]:56850) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SLdrS-0007wp-Bd for emacs-devel@gnu.org; Sat, 21 Apr 2012 13:12:39 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SLdrQ-00033g-Q4 for emacs-devel@gnu.org; Sat, 21 Apr 2012 13:12:37 -0400 Original-Received: from mail-pb0-f41.google.com ([209.85.160.41]:38372) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SLdrQ-00033b-HC for emacs-devel@gnu.org; Sat, 21 Apr 2012 13:12:36 -0400 Original-Received: by pbcup15 with SMTP id up15so2316508pbc.0 for ; Sat, 21 Apr 2012 10:12:34 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:from:date:message-id:subject:to:content-type :content-transfer-encoding; bh=P/0NLtecwiAZ1Y4R5Nuxw1JDN/8ukBt4UYOV1BQpNRY=; b=SHHzQU56KTrs3c1jUwweJG6rslub1XjeFKH0vwyuaKD31YQLApFn2+KVDJFk6WIGV8 jHwWzk1oS28mJ0xUrln5S7Qoyez5YwoLPSUy1GNPA+PLxMEMYVCVUJijIz26gNrFpryn Xw2FnMdj432G2+qqP6elGL/HuLS8Yw9z//KpLYr45bUKrXtUnB4GGk8NtEEKq/SFJA7c pH/upqV9GBAAeClvn6E6PVsW4WY3oQy449l7lLcDpo6O8jloZivMkv9oti52ZIpiASQa mPcOIoSiYUB+ovOgbG0Rty8H/smoye2uhuhp7l6NmUNFmxew7lRi6HEDr+bbMb94U/iF NZlA== Original-Received: by 10.68.238.134 with SMTP id vk6mr14385623pbc.138.1335028354551; Sat, 21 Apr 2012 10:12:34 -0700 (PDT) Original-Received: by 10.143.83.9 with HTTP; Sat, 21 Apr 2012 10:11:54 -0700 (PDT) X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.85.160.41 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:149918 Archived-At: A few days ago, I started getting warnings from Bzr when I run Emacs (trunk, not the emacs-24 branch) and desktop.el loads a file which is under bzr and modified. The prototypical example is that I've modified lisp/ChangeLog, and in a subsequent session I start emacs and get Warnings in `bzr' output: modified:^M lisp/ChangeLog^M Warnings in `bzr' output: modified:^M lisp/ChangeLog The ^M are part of the message, and the message is duplicated (in the example, the only modified file in the workspace is lisp/ChangeLog). Checking the return of vc-bzr-status, I see: ELISP> (vc-bzr-status "lisp/ChangeLog") (modified) ELISP> (vc-bzr-status "lisp/ChangeLog^M") (unchanged . "modified:\n lisp/ChangeLog\n") Before filing a bug report (which involves doing surgery to my .emacs), does it ring a bell to anyone? Any recent change in the trunk that could be the cause? =C2=A0 =C2=A0 Juanma