From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Angelo Graziosi Newsgroups: gmane.emacs.devel Subject: Editing .RC files Date: Thu, 08 Aug 2013 22:38:55 +0200 Message-ID: <520401DF.6000809@alice.it> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1375994365 15428 80.91.229.3 (8 Aug 2013 20:39:25 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 8 Aug 2013 20:39:25 +0000 (UTC) To: emacs Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Aug 08 22:39:26 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 1V7WzU-0005ag-Cg for ged-emacs-devel@m.gmane.org; Thu, 08 Aug 2013 22:39:24 +0200 Original-Received: from localhost ([::1]:44543 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V7WzU-0004FR-0a for ged-emacs-devel@m.gmane.org; Thu, 08 Aug 2013 16:39:24 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:40474) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V7WzK-0004EK-0m for emacs-devel@gnu.org; Thu, 08 Aug 2013 16:39:22 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1V7WzC-0006cG-M9 for emacs-devel@gnu.org; Thu, 08 Aug 2013 16:39:13 -0400 Original-Received: from smtp204.alice.it ([82.57.200.100]:58397) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V7WzC-0006WO-B3 for emacs-devel@gnu.org; Thu, 08 Aug 2013 16:39:06 -0400 Original-Received: from [192.168.1.100] (79.8.208.48) by smtp204.alice.it (8.6.060.28) (authenticated as angelo.graziosi@alice.it) id 51F278600137CF22 for emacs-devel@gnu.org; Thu, 8 Aug 2013 22:39:03 +0200 User-Agent: Mozilla/5.0 (Windows NT 5.1; rv:17.0) Gecko/20130801 Thunderbird/17.0.8 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 82.57.200.100 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:162534 Archived-At: Out of curiosity, is there an Emacs programming mode to edit .RC [*] files? --- [*] The .RC files, in Windows programming, are those compiled by means of windres (in the GNU world), the Resource Compiler. They look like this: [...] IDM_MAINMENU MENU DISCARDABLE BEGIN POPUP "&File" BEGIN MENUITEM "E&xit...", IDM_FILE_EXIT END POPUP "&Data" BEGIN MENUITEM "Number of lattice &divisions...", IDM_DATA_NDIV MENUITEM "Maximum number of &iterations...", IDM_DATA_MAXI MENUITEM "&Precision for convergence...", IDM_DATA_EPS MENUITEM "&Relaxation parameter...", IDM_DATA_OMEGA MENUITEM SEPARATOR MENUITEM "&X-boundary conditions...", IDM_DATA_XBOUNDS MENUITEM "&Y-boundary conditions...", IDM_DATA_YBOUNDS MENUITEM SEPARATOR MENUITEM "Iteration steps for &output...", IDM_DATA_NSOUT MENUITEM "Color &scale limits...", IDM_DATA_PHILIMITS END POPUP "&Options" BEGIN [...]