From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Giorgos Keramidas Newsgroups: gmane.emacs.devel Subject: Adding lib-src/blessmail to .bzrignore Date: Wed, 23 Jan 2013 22:05:17 +0100 Message-ID: <20130123210515.GA3315@saturn> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 X-Trace: ger.gmane.org 1358975136 25441 80.91.229.3 (23 Jan 2013 21:05:36 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 23 Jan 2013 21:05:36 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Jan 23 22:05:55 2013 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 1Ty7Vy-0006dT-Il for ged-emacs-devel@m.gmane.org; Wed, 23 Jan 2013 22:05:46 +0100 Original-Received: from localhost ([::1]:41394 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ty7Vg-0001UX-T6 for ged-emacs-devel@m.gmane.org; Wed, 23 Jan 2013 16:05:28 -0500 Original-Received: from eggs.gnu.org ([208.118.235.92]:58970) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ty7Vd-0001UK-1F for emacs-devel@gnu.org; Wed, 23 Jan 2013 16:05:27 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Ty7Va-0003NS-8z for emacs-devel@gnu.org; Wed, 23 Jan 2013 16:05:24 -0500 Original-Received: from mail-ea0-f180.google.com ([209.85.215.180]:45856) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ty7Va-0003NN-2y for emacs-devel@gnu.org; Wed, 23 Jan 2013 16:05:22 -0500 Original-Received: by mail-ea0-f180.google.com with SMTP id c1so3556885eaa.39 for ; Wed, 23 Jan 2013 13:05:20 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:date:from:to:subject:message-id:mime-version :content-type:content-disposition; bh=rjgjlnw+dHhcJbalc5i70NrwSxqe6yj/lR7AOlg10KA=; b=cePi+zw4Dg3xFIjlUNU4u5e9FnUSQweQrsDkSjOKojiEEUaTQGBiHkFNC6CDPRh0Uv q60DS2lWR4g3+qFXQoXV1LqenvMe7CjLv+7aYMzxkfVCE6slswA3hvagynQdZmzxU6aD KflIZmCsubk74hPGpJDRQ+ez8btL27/gnw06RcD2DynKhCFha731bq6z5rCo7Qoi1O27 cZWcX2a/VmYiVwEMFTH4ZxmaAiHPz4z57yJQw4lt5O82vqWy7M+TiC1GgZAsHid+DycD JeyvD/3JcV7j7gm41+FKlt3TH4gdLM/3wqrvY3XJfxEQ39492eLloxKj1NFTF8+ytH9k 5a0w== X-Received: by 10.14.223.137 with SMTP id v9mr7948569eep.22.1358975120766; Wed, 23 Jan 2013 13:05:20 -0800 (PST) Original-Received: from saturn (217-162-217-29.dynamic.hispeed.ch. [217.162.217.29]) by mx.google.com with ESMTPS id w44sm32328117eep.6.2013.01.23.13.05.19 (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Wed, 23 Jan 2013 13:05:19 -0800 (PST) Content-Disposition: inline X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x [fuzzy] X-Received-From: 209.85.215.180 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:156609 Archived-At: When I run 'bzr status' in a checkout where I've recently built Emacs on my laptop I see lib-src/blessmail: saturn:~/bzr/emacs/trunk$ bzr status unknown: lib-src/blessmail No other files are displayed, so I patched the following change locally, and it seems to DTRT: %%% saturn:~/bzr/emacs/trunk$ bzr diff -r 110543 === modified file '.bzrignore' --- .bzrignore 2012-12-10 20:47:57 +0000 +++ .bzrignore 2013-01-23 20:57:03 +0000 @@ -114,6 +114,7 @@ lib/time.in-h lib/unistd.in-h lib/cxxdefs.h +lib-src/blessmail lib-src/ctags lib-src/ctags.c lib-src/ebrowse === modified file 'ChangeLog' --- ChangeLog 2013-01-19 20:38:13 +0000 +++ ChangeLog 2013-01-23 20:59:28 +0000 @@ -1,3 +1,7 @@ +2013-01-23 Giorgos Keramidas + + * .bzrignore: add lib-src/blessmail. + 2013-01-19 Glenn Morris * Makefile.in (install-arch-indep): Put back a chmod that was saturn:~/bzr/emacs/trunk$ %%% This is really just a _very_ minor thing, but I thought I'd send it anyway. -- Giorgos Keramidas; gkeramidas@gmail.com