From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Oleksandr Gavenko Newsgroups: gmane.emacs.help Subject: Re: (require ...) and file dependencies. Date: Sat, 03 Jan 2015 16:51:06 +0200 Organization: Oleksandr Gavenko , http://gavenkoa.users.sf.net Message-ID: <87oaqfapet.fsf@gavenkoa.example.com> References: <87iogwd5h8.fsf@gavenkoa.example.com> <87tx08obja.fsf@debian.uxu> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1420296710 31126 80.91.229.3 (3 Jan 2015 14:51:50 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 3 Jan 2015 14:51:50 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sat Jan 03 15:51:43 2015 Return-path: Envelope-to: geh-help-gnu-emacs@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 1Y7Q3K-00076d-Jb for geh-help-gnu-emacs@m.gmane.org; Sat, 03 Jan 2015 15:51:42 +0100 Original-Received: from localhost ([::1]:54547 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Y7Q3K-0003PR-4x for geh-help-gnu-emacs@m.gmane.org; Sat, 03 Jan 2015 09:51:42 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:48451) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Y7Q37-0003OR-Vy for help-gnu-emacs@gnu.org; Sat, 03 Jan 2015 09:51:30 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Y7Q34-00057G-Dy for help-gnu-emacs@gnu.org; Sat, 03 Jan 2015 09:51:29 -0500 Original-Received: from plane.gmane.org ([80.91.229.3]:43696) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Y7Q34-00057B-6u for help-gnu-emacs@gnu.org; Sat, 03 Jan 2015 09:51:26 -0500 Original-Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1Y7Q30-00071P-TX for help-gnu-emacs@gnu.org; Sat, 03 Jan 2015 15:51:23 +0100 Original-Received: from 46.211.79.104 ([46.211.79.104]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 03 Jan 2015 15:51:22 +0100 Original-Received: from gavenkoa by 46.211.79.104 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 03 Jan 2015 15:51:22 +0100 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 30 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: 46.211.79.104 User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.4 (gnu/linux) Cancel-Lock: sha1:nGNEmaLBH7so3Lyc2LdG5uy7d70= X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 80.91.229.3 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:101866 Archived-At: On 2015-01-03, Emanuel Berg wrote: > Dmitry Gutov writes: > >>> Seems that proper way to fix issue is by >>> rearranging dependency hierarchy by breaking >>> dependency cycles, isn't? >> >> That would be even better, of course. > > And more pleasant and rewarding to do, as well. Just > go with the flow, man :) I fix compilation warnings and errors in wesnoth-mode. It have wesnoth-mode.el and wesnoth-update.el (for generating validation schema and context sensitive completion). wesnoth-update.el uses some core parsing function from wesnoth-mode.el and author define key binding to wesnoth-update.el from wesnoth-mode.el... To fix issues large parts of code must migrate between files and DVCS blame/annotate history was lost in refactoring. That limitation I hate in VCS. So you have to store detailed copy/paste info in commit message or intensively grep and "DVCS update -r rev" to figure out original place of defun to get know who/when and what fixes done with that defun. -- Best regards!