From debbugs-submit-bounces@debbugs.gnu.org Mon Jul 26 11:30:36 2010 Received: (at submit) by debbugs.gnu.org; 26 Jul 2010 15:30:38 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OdPdT-0004Nm-V0 for submit@debbugs.gnu.org; Mon, 26 Jul 2010 11:30:36 -0400 Received: from mail.gnu.org ([199.232.76.166] helo=mx10.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OdPdS-0004Nc-73 for submit@debbugs.gnu.org; Mon, 26 Jul 2010 11:30:35 -0400 Received: from lists.gnu.org ([199.232.76.165]:32792) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1OdPdX-0007ro-WF for submit@debbugs.gnu.org; Mon, 26 Jul 2010 11:30:40 -0400 Received: from [140.186.70.92] (port=36401 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OdPdR-0006At-FJ for bug-gnu-emacs@gnu.org; Mon, 26 Jul 2010 11:30:39 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00,FRT_SOMA2, RCVD_IN_DNSWL_HI,T_RP_MATCHES_RCVD,T_TVD_MIME_NO_HEADERS autolearn=unavailable version=3.3.1 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OdPdL-0001uf-Md for bug-gnu-emacs@gnu.org; Mon, 26 Jul 2010 11:30:33 -0400 Received: from mx1.redhat.com ([209.132.183.28]:22029) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OdPdL-0001uY-9Q for bug-gnu-emacs@gnu.org; Mon, 26 Jul 2010 11:30:27 -0400 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id o6QFUQOr007081 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Mon, 26 Jul 2010 11:30:26 -0400 Received: from ns3.rdu.redhat.com (ns3.rdu.redhat.com [10.11.255.199]) by int-mx02.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id o6QFUQeu011318; Mon, 26 Jul 2010 11:30:26 -0400 Received: from opsy.redhat.com (ovpn01.gateway.prod.ext.phx2.redhat.com [10.5.9.1]) by ns3.rdu.redhat.com (8.13.8/8.13.8) with ESMTP id o6QFUPU8010806; Mon, 26 Jul 2010 11:30:25 -0400 Received: by opsy.redhat.com (Postfix, from userid 500) id 512E03792BB; Mon, 26 Jul 2010 09:30:25 -0600 (MDT) From: Tom Tromey To: bug-gnu-emacs@gnu.org Subject: 23.2; tags-file-name is not a safe local variable X-Attribution: Tom Date: Mon, 26 Jul 2010 09:30:25 -0600 Message-ID: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Scanned-By: MIMEDefang 2.67 on 10.5.11.12 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) X-Spam-Score: -5.8 (-----) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -5.8 (-----) --=-=-= I found that tags-file-name is not a safe local variable. It seems like it should be, so I've attached a patch. --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=P Content-Description: tags safe local variable patch 2010-07-26 Tom Tromey * progmodes/etags.el (tags-file-name): Make safe if stringp. === modified file 'lisp/progmodes/etags.el' --- lisp/progmodes/etags.el 2010-05-01 01:08:43 +0000 +++ lisp/progmodes/etags.el 2010-07-26 15:23:40 +0000 @@ -40,6 +40,7 @@ Use the `etags' program to make a tags table file.") ;; Make M-x set-variable tags-file-name like M-x visit-tags-table. ;;;###autoload (put 'tags-file-name 'variable-interactive (purecopy "fVisit tags table: ")) +;;;###autoload (put 'tags-file-name 'safe-local-variable 'stringp) (defgroup etags nil "Tags tables." :group 'tools) --=-=-= In GNU Emacs 23.2.1 (i386-redhat-linux-gnu, GTK+ Version 2.20.1) of 2010-05-13 on x86-01.phx2.fedoraproject.org Windowing system distributor `Fedora Project', version 11.0.10802000 configured using `configure '--build=i386-redhat-linux-gnu' '--host=i386-redhat-linux-gnu' '--program-prefix=' '--disable-dependency-tracking' '--prefix=/usr' '--exec-prefix=/usr' '--bindir=/usr/bin' '--sbindir=/usr/sbin' '--sysconfdir=/etc' '--datadir=/usr/share' '--includedir=/usr/include' '--libdir=/usr/lib' '--libexecdir=/usr/libexec' '--localstatedir=/var' '--sharedstatedir=/var/lib' '--mandir=/usr/share/man' '--infodir=/usr/share/info' '--with-dbus' '--with-gif' '--with-jpeg' '--with-png' '--with-rsvg' '--with-tiff' '--with-xft' '--with-xpm' '--with-x-toolkit=gtk' 'build_alias=i386-redhat-linux-gnu' 'host_alias=i386-redhat-linux-gnu' 'CFLAGS=-DMAIL_USE_LOCKF -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m32 -march=i686 -mtune=atom -fasynchronous-unwind-tables'' Important settings: value of $LC_ALL: nil value of $LC_COLLATE: nil value of $LC_CTYPE: nil value of $LC_MESSAGES: nil value of $LC_MONETARY: nil value of $LC_NUMERIC: nil value of $LC_TIME: nil value of $LANG: en_US.UTF-8 value of $XMODIFIERS: nil locale-coding-system: utf-8-unix default enable-multibyte-characters: t Major mode: Change Log Minor modes in effect: bug-reference-mode: t auto-fill-function: do-auto-fill shell-dirtrack-mode: t erc-list-mode: t erc-menu-mode: t erc-autojoin-mode: t erc-ring-mode: t erc-pcomplete-mode: t erc-track-mode: t erc-track-minor-mode: t erc-match-mode: t erc-button-mode: t erc-fill-mode: t erc-stamp-mode: t erc-netsplit-mode: t erc-spelling-mode: t erc-truncate-mode: t diff-auto-refine-mode: t global-semanticdb-minor-mode: t global-semantic-idle-summary-mode: t semantic-mode: t flyspell-mode: t erc-status-mode: t erc-services-mode: t erc-networks-mode: t erc-irccontrols-mode: t erc-noncommands-mode: t erc-move-to-prompt-mode: t erc-readonly-mode: t tooltip-mode: t mouse-wheel-mode: t file-name-shadow-mode: t global-font-lock-mode: t font-lock-mode: t auto-encryption-mode: t auto-compression-mode: t line-number-mode: t transient-mark-mode: t Recent input: C-v C-l C-u C-n M-> C-x C-x C-x o M-\ C-x o C-v C-u C-n C-n M-w C-x o C-y C-x 1 C-x C-s M-v M-v C-z o C-z o C-x b * i g r C-c b C-x b j s . M-x l g r e p m o e d e SPC C-a - C-e n i l SPC C-x o C-x 1 C-z o M a y b e SPC g d b - s c r i p t - m o d e SPC a n d SPC l d - s c r i p t - m o d e SPC a l s o SPC t h n e e d s SPC t h i s SPC t r e a t m e n t . I w a SPC w a s SPC u n u s u s u r e . M-> M-v M-v M-v M-v M-v M-v C-u C-u C-p C-p C-p C-c C-a / t m p / Q a p x - p * p a t C-a C-k t e x t / x - p a p r o g - m o d e SPC p a t c h C-c C-c y e s C-z o C-x b Q C-x k C-x C-g C-c b C-x k C-SPC M-> C-w M-< C-SPC C-u C-n C-w C-x e e e C-SPC C-u C-n C-u C-n C-n C-w C-f C-x C-s C-z o C-x C-g M-x M-p M-p Recent messages: Sending via mail... Sending...done Mark set [3 times] Error Writing Table: # Save Error: "\"Error in macro \\\"name\\\"\"": /home/tromey/.emacs.d/semanticdb/!usr!include!semantic.cache Auto-saving...done (Type e to repeat macro) [3 times] Mark set Saving file /tmp/P... Wrote /tmp/P Load-path shadows: /home/tromey/lib/lisp/rpm-spec-mode hides /usr/share/emacs/site-lisp/rpm-spec-mode /usr/share/emacs/site-lisp/flim/sha1 hides /usr/share/emacs/23.2/lisp/sha1 /usr/share/emacs/site-lisp/flim/md4 hides /usr/share/emacs/23.2/lisp/md4 /usr/share/emacs/site-lisp/flim/hex-util hides /usr/share/emacs/23.2/lisp/hex-util /home/tromey/.emacs.d/elpa/css-mode-1.0/css-mode hides /usr/share/emacs/23.2/lisp/textmodes/css-mode /home/tromey/.emacs.d/elpa/ruby-mode-1.0/ruby-mode hides /usr/share/emacs/23.2/lisp/progmodes/ruby-mode /home/tromey/.emacs.d/elpa/nxml-mode-20041004/nxml-glyph hides /usr/share/emacs/23.2/lisp/nxml/nxml-glyph /home/tromey/.emacs.d/elpa/nxml-mode-20041004/rng-valid hides /usr/share/emacs/23.2/lisp/nxml/rng-valid /home/tromey/.emacs.d/elpa/nxml-mode-20041004/nxml-maint hides /usr/share/emacs/23.2/lisp/nxml/nxml-maint /home/tromey/.emacs.d/elpa/nxml-mode-20041004/rng-cmpct hides /usr/share/emacs/23.2/lisp/nxml/rng-cmpct /home/tromey/.emacs.d/elpa/nxml-mode-20041004/rng-loc hides /usr/share/emacs/23.2/lisp/nxml/rng-loc /home/tromey/.emacs.d/elpa/nxml-mode-20041004/rng-dt hides /usr/share/emacs/23.2/lisp/nxml/rng-dt /home/tromey/.emacs.d/elpa/nxml-mode-20041004/rng-parse hides /usr/share/emacs/23.2/lisp/nxml/rng-parse /home/tromey/.emacs.d/elpa/nxml-mode-20041004/rng-uri hides /usr/share/emacs/23.2/lisp/nxml/rng-uri /home/tromey/.emacs.d/elpa/nxml-mode-20041004/rng-util hides /usr/share/emacs/23.2/lisp/nxml/rng-util /home/tromey/.emacs.d/elpa/nxml-mode-20041004/nxml-uchnm hides /usr/share/emacs/23.2/lisp/nxml/nxml-uchnm /home/tromey/.emacs.d/elpa/nxml-mode-20041004/nxml-ns hides /usr/share/emacs/23.2/lisp/nxml/nxml-ns /home/tromey/.emacs.d/elpa/nxml-mode-20041004/nxml-rap hides /usr/share/emacs/23.2/lisp/nxml/nxml-rap /home/tromey/.emacs.d/elpa/nxml-mode-20041004/xsd-regexp hides /usr/share/emacs/23.2/lisp/nxml/xsd-regexp /home/tromey/.emacs.d/elpa/nxml-mode-20041004/nxml-mode hides /usr/share/emacs/23.2/lisp/nxml/nxml-mode /home/tromey/.emacs.d/elpa/nxml-mode-20041004/nxml-enc hides /usr/share/emacs/23.2/lisp/nxml/nxml-enc /home/tromey/.emacs.d/elpa/nxml-mode-20041004/nxml-outln hides /usr/share/emacs/23.2/lisp/nxml/nxml-outln /home/tromey/.emacs.d/elpa/nxml-mode-20041004/rng-xsd hides /usr/share/emacs/23.2/lisp/nxml/rng-xsd /home/tromey/.emacs.d/elpa/nxml-mode-20041004/rng-nxml hides /usr/share/emacs/23.2/lisp/nxml/rng-nxml /home/tromey/.emacs.d/elpa/nxml-mode-20041004/rng-maint hides /usr/share/emacs/23.2/lisp/nxml/rng-maint /home/tromey/.emacs.d/elpa/nxml-mode-20041004/xmltok hides /usr/share/emacs/23.2/lisp/nxml/xmltok /home/tromey/.emacs.d/elpa/nxml-mode-20041004/nxml-util hides /usr/share/emacs/23.2/lisp/nxml/nxml-util /home/tromey/.emacs.d/elpa/nxml-mode-20041004/nxml-parse hides /usr/share/emacs/23.2/lisp/nxml/nxml-parse /home/tromey/.emacs.d/elpa/nxml-mode-20041004/rng-pttrn hides /usr/share/emacs/23.2/lisp/nxml/rng-pttrn /home/tromey/.emacs.d/elpa/nxml-mode-20041004/rng-match hides /usr/share/emacs/23.2/lisp/nxml/rng-match /usr/share/emacs/site-lisp/flim/sasl-cram hides /usr/share/emacs/23.2/lisp/net/sasl-cram /usr/share/emacs/site-lisp/flim/hmac-def hides /usr/share/emacs/23.2/lisp/net/hmac-def /usr/share/emacs/site-lisp/flim/hmac-md5 hides /usr/share/emacs/23.2/lisp/net/hmac-md5 /usr/share/emacs/site-lisp/flim/sasl hides /usr/share/emacs/23.2/lisp/net/sasl /usr/share/emacs/site-lisp/flim/sasl-digest hides /usr/share/emacs/23.2/lisp/net/sasl-digest /usr/share/emacs/site-lisp/flim/sasl-ntlm hides /usr/share/emacs/23.2/lisp/net/sasl-ntlm /usr/share/emacs/site-lisp/flim/ntlm hides /usr/share/emacs/23.2/lisp/net/ntlm /home/tromey/.emacs.d/elpa/emms-3.0/tq hides /usr/share/emacs/23.2/lisp/emacs-lisp/tq Features: (log-edit pcvs-util url-cache url-http tls url-gw url-auth iso-transl expand diff dired-aux skeleton cal-move sh-script executable vcard gnus-fun jimb-patch smerge-mode gdb-shell rect noutline outline mule-util gdb-ui bindat json gud vc-annotate grep webjump ffap newcomment etags bbdb-sc supercite regi tcl semantic/analyze/complete shell edmacro kmacro semantic/edit goto-addr add-log shadow mail-hist emacsbug idutils compile find-file semantic/complete eieio-opt bbdb-hooks semantic/tag-write erc-menu erc-join erc-ring erc-pcomplete pcomplete erc-track erc-match erc-button erc-fill erc-stamp erc-netsplit erc-spelling erc-truncate semantic/tag-file diff-mode semantic/db-typecache semantic/find semantic/bovine semantic/db-file cedet-files semantic/bovine/c semantic/decorate/include semantic/db-find semantic/db-ref semantic/decorate/mode semantic/decorate pulse semantic/bovine/c-by semantic/lex-spp semantic/bovine/gcc semantic/dep semantic/analyze semantic/sort semantic/scope semantic/analyze/fcn cc-mode cc-fonts cc-menus cc-cmds cc-styles cc-align cc-engine cc-vars cc-defs w3m-form w3m browse-url doc-view image-mode w3m-hist w3m-fb w3m-ems w3m-ccl ccl w3m-favicon w3m-image w3m-proc w3m-util vc-git vc-bzr vc-sccs vc-svn vc-rcs vc-dir ewoc vc vc-dispatcher flow-fill bbdb-gui gnus-cite smiley ansi-color gnus-async gnus-bcklg parse-time gnus-ml disp-table auth-source nnml nndraft nnmh bbdb-gnus bbdb-snarf mail-extr bbdb-com warnings gnus-agent gnus-srvr gnus-score score-mode nnvirtual gnus-msg gnus-art mm-uu mml2015 epg-config mm-view smime dig nntp gnus-cache gnus-sum nnoo gnus-group gnus-undo nnmail mail-source gnus-start gnus-spec gnus-int gnus-range message idna sendmail ecomplete rfc822 mml mml-sec password-cache mm-decode mm-bodies mm-encode mail-parse rfc2231 rfc2047 rfc2045 qp ietf-drums mailabbrev gmm-utils mailheader canlock sha1 sha1-el hex-util hashcash gnus-win gnus gnus-ems nnheader gnus-util netrc mail-utils wid-edit multi-isearch apropos cus-start cus-load semantic/db-mode semantic/db eieio-base semantic/idle semantic/format ezimage semantic/tag-ls semantic/ctxt semantic/util-modes semantic/util semantic semantic/tag semantic/lex semantic/fw eieio byte-opt bytecomp byte-compile mode-local cedet copyright dabbrev find-func help-mode view vc-cvs jka-compr flyspell ispell eldoc emms-status emms-lastfm emms-url url url-proxy url-privacy url-expand url-methods url-history url-cookie url-util url-parse url-vars mm-util mail-prsvr mailcap emms-browser sort emms-playlist-sort emms-score emms-player-xine emms-player-mpd tq emms-playing-time emms-lyrics time-date emms-streams emms-mode-line emms-cache emms-info-ogginfo emms-info-mp3info emms-info later-do emms-playlist-mode emms-player-mplayer emms-player-simple emms-source-playlist emms-source-file dired emms-setup emms emms-compat gdb-shell-autoloads nxml-enc info weblogger-autoloads xml-rpc-autoloads package reporter cal-china lunar solar cal-dst cal-bahai cal-islam cal-hebrew holidays hol-loaddefs appt diary-lib diary-loaddefs cal-menu easymenu calendar cal-loaddefs uniquify mouse-sel easy-mmode status cl cl-19 erc-services erc-networks erc-goodies erc erc-backend erc-compat format-spec thingatpt pp bbdb timezone ange-ftp regexp-opt comint ring server advice help-fns advice-preload u-vm-color vm-autoloads vm-vars vm-version bbdb-autoloads tooltip ediff-hook vc-hooks lisp-float-type mwheel x-win x-dnd font-setting tool-bar dnd fontset image fringe lisp-mode register page menu-bar rfn-eshadow timer select scroll-bar mldrag mouse jit-lock font-lock syntax facemenu font-core frame cham georgian utf-8-lang misc-lang vietnamese tibetan thai tai-viet lao korean japanese hebrew greek romanian slovak czech european ethiopic indian cyrillic chinese case-table epa-hook jka-cmpr-hook help simple abbrev loaddefs button minibuffer faces cus-face files text-properties overlay md5 base64 format env code-pages mule custom widget hashtable-print-readable backquote make-network-process dbusbind system-font-setting font-render-setting gtk x-toolkit x multi-tty emacs) Tom --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Mon Jul 26 20:50:32 2010 Received: (at submit) by debbugs.gnu.org; 27 Jul 2010 00:50:32 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OdYNL-0008Da-Nh for submit@debbugs.gnu.org; Mon, 26 Jul 2010 20:50:31 -0400 Received: from mx10.gnu.org ([199.232.76.166]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OdRCn-00052d-8A for submit@debbugs.gnu.org; Mon, 26 Jul 2010 13:11:09 -0400 Received: from lists.gnu.org ([199.232.76.165]:58902) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1OdRCs-0000xY-VZ for submit@debbugs.gnu.org; Mon, 26 Jul 2010 13:11:15 -0400 Received: from [140.186.70.92] (port=48836 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OdRCn-0007s2-CH for bug-gnu-emacs@gnu.org; Mon, 26 Jul 2010 13:11:14 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=unavailable version=3.3.1 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OdRCi-00049v-2X for bug-gnu-emacs@gnu.org; Mon, 26 Jul 2010 13:11:09 -0400 Received: from blade3.isti.cnr.it ([194.119.192.19]:55577) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OdRCh-00049e-LK for bug-gnu-emacs@gnu.org; Mon, 26 Jul 2010 13:11:03 -0400 Received: from conversionlocal.isti.cnr.it by mx.isti.cnr.it (PMDF V6.5 #31825) id <01NPY7N7B35SH61Z7L@mx.isti.cnr.it> for bug-gnu-emacs@gnu.org; Mon, 26 Jul 2010 19:10:26 +0100 Received: from tucano.isti.cnr.it (tucano.isti.cnr.it [146.48.81.102]) by mx.isti.cnr.it (PMDF V6.5 #31826) with ESMTPSA id <01NPY7N6PE3UGYKA6C@mx.isti.cnr.it>; Mon, 26 Jul 2010 19:10:25 +0100 Received: from pot by tucano.isti.cnr.it with local (Exim 4.72) (envelope-from ) id 1OdRC5-00035M-O2; Mon, 26 Jul 2010 19:10:25 +0200 Date: Mon, 26 Jul 2010 19:10:25 +0200 From: Francesco =?utf-8?Q?Potort=C3=AC?= Subject: Re: bug#6733: 23.2; tags-file-name is not a safe local variable In-reply-to: To: Tom Tromey Message-id: Organization: X-INSM-ip-source: 146.48.81.102 Auth Done X-fingerprint: 4B02 6187 5C03 D6B1 2E31 7666 09DF 2DC9 BE21 6115 References: X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) X-Spam-Score: -5.4 (-----) X-Debbugs-Envelope-To: submit X-Mailman-Approved-At: Mon, 26 Jul 2010 20:50:28 -0400 Cc: 6733@debbugs.gnu.org, bug-gnu-emacs@gnu.org, owner@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -5.4 (-----) >I found that tags-file-name is not a safe local variable. >It seems like it should be, I think I agree. etags.el should not execute anything from the TAGS files. Worst it can do should be to load the wrong file. If the file is huge it can take forever to load. I cannot think of anything worse... From debbugs-submit-bounces@debbugs.gnu.org Thu Jul 29 19:32:54 2010 Received: (at control) by debbugs.gnu.org; 29 Jul 2010 23:32:54 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1Oecar-0007zU-UQ for submit@debbugs.gnu.org; Thu, 29 Jul 2010 19:32:54 -0400 Received: from mail-bw0-f44.google.com ([209.85.214.44]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1Oecaq-0007zN-K0 for control@debbugs.gnu.org; Thu, 29 Jul 2010 19:32:52 -0400 Received: by bwz7 with SMTP id 7so546772bwz.3 for ; Thu, 29 Jul 2010 16:33:06 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:mime-version:received:from:date :message-id:subject:to:content-type; bh=/TJfhRhHcpdK2dXoOxUDfxkGnBlzMM9bP5dQHAlxehI=; b=Bta4B6ydeHHtNujNR/WhHpRWuA1J0LePCE8ZjMKDs+0QCJsbA1fLql4tUHte2gEcfh +DIx1cLoGvGOI8113qh4OKNFkC31h0Tk0904IVpXvHT4ALSE+DEbskNVt9bBFS3Lk39j gZjwLhd7wzLDWMA6cWlizyg8qjpMbVyyUz0Is= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:from:date:message-id:subject:to:content-type; b=KhdcB/RzL7H7BV7g+FZhV1ucklwpbwSXFa3ZIMioKRXFc+ikNkCT01tD2Vo30lqPSV 1b0L+iddAK2fsURrL9+jCbKu9YdPCaPQ6NooEbamaVNINwHHMCOowigtBFpuqGNQfJxz YAZqvo00x+tT6fUCmkRboVercNkADAVkPNK1Y= Received: by 10.204.10.140 with SMTP id p12mr597880bkp.58.1280446386196; Thu, 29 Jul 2010 16:33:06 -0700 (PDT) MIME-Version: 1.0 Received: by 10.204.180.136 with HTTP; Thu, 29 Jul 2010 16:32:46 -0700 (PDT) From: Juanma Barranquero Date: Fri, 30 Jul 2010 01:32:46 +0200 Message-ID: Subject: To: control@debbugs.gnu.org Content-Type: text/plain; charset=UTF-8 X-Spam-Score: -1.8 (-) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -1.8 (-) tags 6733 + patch quit From debbugs-submit-bounces@debbugs.gnu.org Sat Aug 14 19:01:40 2010 Received: (at 6733) by debbugs.gnu.org; 14 Aug 2010 23:01:40 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OkPjP-00026k-NC for submit@debbugs.gnu.org; Sat, 14 Aug 2010 19:01:39 -0400 Received: from pantheon-po18.its.yale.edu ([130.132.50.74]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OkPjO-00026e-60 for 6733@debbugs.gnu.org; Sat, 14 Aug 2010 19:01:38 -0400 Received: from furry (173-14-147-246-NewEngland.hfc.comcastbusiness.net [173.14.147.246]) (authenticated bits=0) by pantheon-po18.its.yale.edu (8.12.11.20060308/8.12.11) with ESMTP id o7EN2Xo6003528 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Sat, 14 Aug 2010 19:02:33 -0400 Received: by furry (Postfix, from userid 1000) id 2B66C16D402; Sat, 14 Aug 2010 19:02:33 -0400 (EDT) From: Chong Yidong To: Francesco =?utf-8?Q?Potort=C3=AC?= , Tom Tromey Subject: Re: bug#6733: 23.2; tags-file-name is not a safe local variable Date: Sat, 14 Aug 2010 19:02:33 -0400 Message-ID: <87d3tkbxx2.fsf@stupidchicken.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-YaleITSMailFilter: Version 1.2c (attachment(s) not renamed) X-Spam-Score: -2.8 (--) X-Debbugs-Envelope-To: 6733 Cc: 6733@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -2.8 (--) > >I found that tags-file-name is not a safe local variable. > >It seems like it should be, > > I think I agree. etags.el should not execute anything from the TAGS > files. Worst it can do should be to load the wrong file. If the file > is huge it can take forever to load. I cannot think of anything worse... OK, I've checked the patch in. Thanks. From debbugs-submit-bounces@debbugs.gnu.org Sat Aug 14 19:01:51 2010 Received: (at control) by debbugs.gnu.org; 14 Aug 2010 23:01:51 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OkPjb-00026w-2y for submit@debbugs.gnu.org; Sat, 14 Aug 2010 19:01:51 -0400 Received: from pantheon-po23.its.yale.edu ([130.132.50.117]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OkPjY-00026r-Sn for control@debbugs.gnu.org; Sat, 14 Aug 2010 19:01:49 -0400 Received: from furry (173-14-147-246-NewEngland.hfc.comcastbusiness.net [173.14.147.246]) (authenticated bits=0) by pantheon-po23.its.yale.edu (8.12.11.20060308/8.12.11) with ESMTP id o7EN2iS3025550 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT) for ; Sat, 14 Aug 2010 19:02:44 -0400 Received: by furry (Postfix, from userid 1000) id 30DA116D402; Sat, 14 Aug 2010 19:02:44 -0400 (EDT) From: Chong Yidong To: control@debbugs.gnu.org Subject: close 6733 Date: Sat, 14 Aug 2010 19:02:44 -0400 Message-ID: <87aaoobxwr.fsf@stupidchicken.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-YaleITSMailFilter: Version 1.2c (attachment(s) not renamed) X-Spam-Score: -2.8 (--) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -2.8 (--) close 6733 thanks From unknown Sun Jun 22 11:35:24 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sun, 12 Sep 2010 11:24:03 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator