From unknown Sat Aug 16 18:21:07 2025 X-Loop: help-debbugs@gnu.org Subject: bug#21615: 24.5; font-lock-extend-region-wholelines' infinite loop Resent-From: brubar.cs@gmail.com Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Sun, 04 Oct 2015 17:18:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 21615 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: 21615@debbugs.gnu.org X-Debbugs-Original-To: bug-gnu-emacs@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.14439790666789 (code B ref -1); Sun, 04 Oct 2015 17:18:02 +0000 Received: (at submit) by debbugs.gnu.org; 4 Oct 2015 17:17:46 +0000 Received: from localhost ([127.0.0.1]:54532 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1Zimuv-0001lQ-D7 for submit@debbugs.gnu.org; Sun, 04 Oct 2015 13:17:45 -0400 Received: from eggs.gnu.org ([208.118.235.92]:51843) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1Zimut-0001lJ-UW for submit@debbugs.gnu.org; Sun, 04 Oct 2015 13:17:44 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Zimus-0006Dn-N7 for submit@debbugs.gnu.org; Sun, 04 Oct 2015 13:17:43 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50,FREEMAIL_FROM autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:44482) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zimus-0006Di-J1 for submit@debbugs.gnu.org; Sun, 04 Oct 2015 13:17:42 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:33608) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zimur-00042L-3e for bug-gnu-emacs@gnu.org; Sun, 04 Oct 2015 13:17:42 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Zimun-0006Co-T9 for bug-gnu-emacs@gnu.org; Sun, 04 Oct 2015 13:17:41 -0400 Received: from smtp4-g21.free.fr ([2a01:e0c:1:1599::13]:26735) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zimun-0006Cc-Hb for bug-gnu-emacs@gnu.org; Sun, 04 Oct 2015 13:17:37 -0400 Received: from tosh-laptop (unknown [78.240.71.23]) by smtp4-g21.free.fr (Postfix) with ESMTPS id 856394C80C9 for ; Sun, 4 Oct 2015 19:17:35 +0200 (CEST) From: brubar.cs@gmail.com Date: Sun, 04 Oct 2015 19:34:07 +0200 Message-ID: <87a8ryczcg.fsf@tosh-laptop.i-did-not-set--mail-host-address--so-tickle-me> MIME-Version: 1.0 Content-Type: text/plain X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -4.0 (----) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -4.0 (----) The function `font-lock-extend-region-wholelines' uses `bolp' to check if point is at the beginning of the line, and, if not, it calls `line-beginning-position' to move to the beginning of the line. Here is the code from `font-lock-extend-region-wholelines': ,---- | (goto-char font-lock-beg) | (unless (bolp) | (setq changed t font-lock-beg (line-beginning-position))) `---- But, `line-beginning-position' moves to the beginning of the line *OR* to the beginning of a *field*. Thus, if point is at the beginning of a field that is not at the beginning of a line, `changed' is set to t but the region is not changed. As `font-lock-extend-region-wholelines' is called again until it doesn't signal a change, we end up in an infinite loop. To reproduce, use the attached file and run it like that: ,---- | emacs -Q --file test-font-lock-infloop.el --eval '(progn (eval-buffer) (DO-NOT-EVAL-ME))' `---- Bruno. In GNU Emacs 24.5.1 (x86_64-pc-linux-gnu, GTK+ Version 3.14.9) of 2015-09-22 on tosh-laptop Windowing system distributor `The X.Org Foundation', version 11.0.11502000 Configured using: `configure --prefix=/usr --build=x86_64-pc-linux-gnu --host=x86_64-pc-linux-gnu --mandir=/usr/share/man --infodir=/usr/share/info --datadir=/usr/share --sysconfdir=/etc --localstatedir=/var/lib --disable-dependency-tracking --disable-silent-rules --libdir=/usr/lib64 --program-suffix=-emacs-24 --infodir=/usr/share/info/emacs-24 --localstatedir=/var --enable-locallisppath=/etc/emacs:/usr/share/emacs/site-lisp --with-gameuser=:gamestat --without-compress-install --with-file-notification=inotify --enable-acl --with-dbus --without-gnutls --without-gpm --without-hesiod --without-kerberos --without-kerberos5 --with-xml2 --without-selinux --without-wide-int --with-zlib --with-sound=alsa --with-x --without-ns --without-gconf --without-gsettings --without-toolkit-scroll-bars --without-gif --with-jpeg --with-png --with-rsvg --without-tiff --with-xpm --with-imagemagick --with-xft --without-libotf --without-m17n-flt --with-x-toolkit=gtk3 GENTOO_PACKAGE=app-editors/emacs-24.5 'CFLAGS=-O2 -pipe -march=native' CPPFLAGS= 'LDFLAGS=-Wl,-O1 -Wl,--as-needed'' Important settings: value of $LC_CTYPE: en_US.UTF-8 locale-coding-system: utf-8-unix Major mode: Lisp Interaction Minor modes in effect: tooltip-mode: t electric-indent-mode: t mouse-wheel-mode: t tool-bar-mode: t menu-bar-mode: t file-name-shadow-mode: t global-font-lock-mode: t font-lock-mode: t blink-cursor-mode: t auto-composition-mode: t auto-encryption-mode: t auto-compression-mode: t line-number-mode: t transient-mark-mode: t Recent messages: For information about GNU Emacs and the GNU system, type C-h C-a. Quit current-kill: Kill ring is empty delete-backward-char: Text is read-only Load-path shadows: None found. Features: (shadow sort gnus-util mail-extr emacsbug message format-spec rfc822 mml easymenu mml-sec mm-decode mm-bodies mm-encode mail-parse rfc2231 mailabbrev gmm-utils mailheader sendmail rfc2047 rfc2045 ietf-drums mm-util help-fns mail-prsvr mail-utils time-date tooltip electric uniquify ediff-hook vc-hooks lisp-float-type mwheel x-win x-dnd tool-bar dnd fontset image regexp-opt fringe tabulated-list newcomment lisp-mode prog-mode register page menu-bar rfn-eshadow timer select scroll-bar 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 minibuffer nadvice loaddefs button faces cus-face macroexp files text-properties overlay sha1 md5 base64 format env code-pages mule custom widget hashtable-print-readable backquote make-network-process dbusbind inotify dynamic-setting font-render-setting move-toolbar gtk x-toolkit x multi-tty emacs) Memory information: ((conses 16 71404 9137) (symbols 48 17534 0) (miscs 40 37 138) (strings 32 9208 4463) (string-bytes 1 253754) (vectors 16 8909) (vector-slots 8 383166 18279) (floats 8 63 99) (intervals 56 222 10) (buffers 960 11) (heap 1024 24783 718)) ===File /home/bruno/WorkingDirectory/Community/Emacs/Gnu-Emacs/test-font-lock-infloop.el=== (defun DO-NOT-EVAL-ME () "FREEZE YOUR EMACS. DO NOT RUN IN YOUR MAIN EMACS. Run this file as follows: emacs -Q --file test-font-lock-infloop.el --eval '(progn (eval-buffer) (DO-NOT-EVAL-ME))' Then, type something between \"TYPE HERE==>>>\" and \"<<<==TYPE HERE\". Your Emacs should now hangs. GNU Emacs 24.5.1 (x86_64-pc-linux-gnu, GTK+ Version 3.14.9) But should work with any Emacs." ;; Publish our own custom function to extend the region to fontify. ;; ;; The first function can say whatever it wants (changed=t or ;; nil), it's ignored. Thus, we need to push ;; `font-lock-extend-region-wholelines' into the second position ;; to show the bug. ;; (add-hook 'font-lock-extend-region-functions (lambda () :whatever)) ;; Put a 'field property between the two "TYPE HERE" below. ;; Typing there will make Emacs hangs ... well, if not before. ;; (let ((beg (re-search-forward "TYPE HERE==>>>")) (end (re-search-forward "<<<==TYPE HERE")) ) (add-text-properties beg end '(field :hang front-sticky t)) )) (DO-NOT-EVAL-ME) ;; TYPE HERE==>>> <<<==TYPE HERE ============================================================ From unknown Sat Aug 16 18:21:07 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.503 (Entity 5.503) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: brubar.cs@gmail.com Subject: bug#21615: closed (Re: bug#21615: 24.5; font-lock-extend-region-wholelines' infinite loop) Message-ID: References: <83h9m0cvc8.fsf@gnu.org> <87a8ryczcg.fsf@tosh-laptop.i-did-not-set--mail-host-address--so-tickle-me> X-Gnu-PR-Message: they-closed 21615 X-Gnu-PR-Package: emacs Reply-To: 21615@debbugs.gnu.org Date: Fri, 09 Oct 2015 08:15:03 +0000 Content-Type: multipart/mixed; boundary="----------=_1444378503-15761-1" This is a multi-part message in MIME format... ------------=_1444378503-15761-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #21615: 24.5; font-lock-extend-region-wholelines' infinite loop which was filed against the emacs package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 21615@debbugs.gnu.org. --=20 21615: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D21615 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1444378503-15761-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 21615-done) by debbugs.gnu.org; 9 Oct 2015 08:14:17 +0000 Received: from localhost ([127.0.0.1]:33325 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1ZkSoj-000459-0O for submit@debbugs.gnu.org; Fri, 09 Oct 2015 04:14:17 -0400 Received: from mtaout21.012.net.il ([80.179.55.169]:65121) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1ZkSof-00044y-Mp for 21615-done@debbugs.gnu.org; Fri, 09 Oct 2015 04:14:15 -0400 Received: from conversion-daemon.a-mtaout21.012.net.il by a-mtaout21.012.net.il (HyperSendmail v2007.08) id <0NVY00B00163XZ00@a-mtaout21.012.net.il> for 21615-done@debbugs.gnu.org; Fri, 09 Oct 2015 11:14:12 +0300 (IDT) Received: from HOME-C4E4A596F7 ([84.94.185.246]) by a-mtaout21.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0NVY00BA91JNX330@a-mtaout21.012.net.il>; Fri, 09 Oct 2015 11:14:12 +0300 (IDT) Date: Fri, 09 Oct 2015 11:14:15 +0300 From: Eli Zaretskii Subject: Re: bug#21615: 24.5; font-lock-extend-region-wholelines' infinite loop In-reply-to: <87a8ryczcg.fsf@tosh-laptop.i-did-not-set--mail-host-address--so-tickle-me> X-012-Sender: halo1@inter.net.il To: brubar.cs@gmail.com Message-id: <83h9m0cvc8.fsf@gnu.org> References: <87a8ryczcg.fsf@tosh-laptop.i-did-not-set--mail-host-address--so-tickle-me> X-Spam-Score: 1.0 (+) X-Debbugs-Envelope-To: 21615-done Cc: 21615-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list Reply-To: Eli Zaretskii List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 1.0 (+) > From: brubar.cs@gmail.com > Date: Sun, 04 Oct 2015 19:34:07 +0200 > > > The function `font-lock-extend-region-wholelines' uses `bolp' to check > if point is at the beginning of the line, and, if not, it calls > `line-beginning-position' to move to the beginning of the line. > > Here is the code from `font-lock-extend-region-wholelines': > > ,---- > | (goto-char font-lock-beg) > | (unless (bolp) > | (setq changed t font-lock-beg (line-beginning-position))) > `---- > > > But, `line-beginning-position' moves to the beginning of the line *OR* > to the beginning of a *field*. Thus, if point is at the beginning of a > field that is not at the beginning of a line, `changed' is set to t but > the region is not changed. As `font-lock-extend-region-wholelines' is > called again until it doesn't signal a change, we end up in an infinite > loop. > > > > To reproduce, use the attached file and run it like that: > > > ,---- > | emacs -Q --file test-font-lock-infloop.el --eval '(progn (eval-buffer) (DO-NOT-EVAL-ME))' > `---- Thanks, I fixed that in the development sources. ------------=_1444378503-15761-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 4 Oct 2015 17:17:46 +0000 Received: from localhost ([127.0.0.1]:54532 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1Zimuv-0001lQ-D7 for submit@debbugs.gnu.org; Sun, 04 Oct 2015 13:17:45 -0400 Received: from eggs.gnu.org ([208.118.235.92]:51843) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1Zimut-0001lJ-UW for submit@debbugs.gnu.org; Sun, 04 Oct 2015 13:17:44 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Zimus-0006Dn-N7 for submit@debbugs.gnu.org; Sun, 04 Oct 2015 13:17:43 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50,FREEMAIL_FROM autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:44482) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zimus-0006Di-J1 for submit@debbugs.gnu.org; Sun, 04 Oct 2015 13:17:42 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:33608) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zimur-00042L-3e for bug-gnu-emacs@gnu.org; Sun, 04 Oct 2015 13:17:42 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Zimun-0006Co-T9 for bug-gnu-emacs@gnu.org; Sun, 04 Oct 2015 13:17:41 -0400 Received: from smtp4-g21.free.fr ([2a01:e0c:1:1599::13]:26735) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zimun-0006Cc-Hb for bug-gnu-emacs@gnu.org; Sun, 04 Oct 2015 13:17:37 -0400 Received: from tosh-laptop (unknown [78.240.71.23]) by smtp4-g21.free.fr (Postfix) with ESMTPS id 856394C80C9 for ; Sun, 4 Oct 2015 19:17:35 +0200 (CEST) From: brubar.cs@gmail.com To: bug-gnu-emacs@gnu.org Subject: 24.5; font-lock-extend-region-wholelines' infinite loop Date: Sun, 04 Oct 2015 19:34:07 +0200 Message-ID: <87a8ryczcg.fsf@tosh-laptop.i-did-not-set--mail-host-address--so-tickle-me> MIME-Version: 1.0 Content-Type: text/plain X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -4.0 (----) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -4.0 (----) The function `font-lock-extend-region-wholelines' uses `bolp' to check if point is at the beginning of the line, and, if not, it calls `line-beginning-position' to move to the beginning of the line. Here is the code from `font-lock-extend-region-wholelines': ,---- | (goto-char font-lock-beg) | (unless (bolp) | (setq changed t font-lock-beg (line-beginning-position))) `---- But, `line-beginning-position' moves to the beginning of the line *OR* to the beginning of a *field*. Thus, if point is at the beginning of a field that is not at the beginning of a line, `changed' is set to t but the region is not changed. As `font-lock-extend-region-wholelines' is called again until it doesn't signal a change, we end up in an infinite loop. To reproduce, use the attached file and run it like that: ,---- | emacs -Q --file test-font-lock-infloop.el --eval '(progn (eval-buffer) (DO-NOT-EVAL-ME))' `---- Bruno. In GNU Emacs 24.5.1 (x86_64-pc-linux-gnu, GTK+ Version 3.14.9) of 2015-09-22 on tosh-laptop Windowing system distributor `The X.Org Foundation', version 11.0.11502000 Configured using: `configure --prefix=/usr --build=x86_64-pc-linux-gnu --host=x86_64-pc-linux-gnu --mandir=/usr/share/man --infodir=/usr/share/info --datadir=/usr/share --sysconfdir=/etc --localstatedir=/var/lib --disable-dependency-tracking --disable-silent-rules --libdir=/usr/lib64 --program-suffix=-emacs-24 --infodir=/usr/share/info/emacs-24 --localstatedir=/var --enable-locallisppath=/etc/emacs:/usr/share/emacs/site-lisp --with-gameuser=:gamestat --without-compress-install --with-file-notification=inotify --enable-acl --with-dbus --without-gnutls --without-gpm --without-hesiod --without-kerberos --without-kerberos5 --with-xml2 --without-selinux --without-wide-int --with-zlib --with-sound=alsa --with-x --without-ns --without-gconf --without-gsettings --without-toolkit-scroll-bars --without-gif --with-jpeg --with-png --with-rsvg --without-tiff --with-xpm --with-imagemagick --with-xft --without-libotf --without-m17n-flt --with-x-toolkit=gtk3 GENTOO_PACKAGE=app-editors/emacs-24.5 'CFLAGS=-O2 -pipe -march=native' CPPFLAGS= 'LDFLAGS=-Wl,-O1 -Wl,--as-needed'' Important settings: value of $LC_CTYPE: en_US.UTF-8 locale-coding-system: utf-8-unix Major mode: Lisp Interaction Minor modes in effect: tooltip-mode: t electric-indent-mode: t mouse-wheel-mode: t tool-bar-mode: t menu-bar-mode: t file-name-shadow-mode: t global-font-lock-mode: t font-lock-mode: t blink-cursor-mode: t auto-composition-mode: t auto-encryption-mode: t auto-compression-mode: t line-number-mode: t transient-mark-mode: t Recent messages: For information about GNU Emacs and the GNU system, type C-h C-a. Quit current-kill: Kill ring is empty delete-backward-char: Text is read-only Load-path shadows: None found. Features: (shadow sort gnus-util mail-extr emacsbug message format-spec rfc822 mml easymenu mml-sec mm-decode mm-bodies mm-encode mail-parse rfc2231 mailabbrev gmm-utils mailheader sendmail rfc2047 rfc2045 ietf-drums mm-util help-fns mail-prsvr mail-utils time-date tooltip electric uniquify ediff-hook vc-hooks lisp-float-type mwheel x-win x-dnd tool-bar dnd fontset image regexp-opt fringe tabulated-list newcomment lisp-mode prog-mode register page menu-bar rfn-eshadow timer select scroll-bar 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 minibuffer nadvice loaddefs button faces cus-face macroexp files text-properties overlay sha1 md5 base64 format env code-pages mule custom widget hashtable-print-readable backquote make-network-process dbusbind inotify dynamic-setting font-render-setting move-toolbar gtk x-toolkit x multi-tty emacs) Memory information: ((conses 16 71404 9137) (symbols 48 17534 0) (miscs 40 37 138) (strings 32 9208 4463) (string-bytes 1 253754) (vectors 16 8909) (vector-slots 8 383166 18279) (floats 8 63 99) (intervals 56 222 10) (buffers 960 11) (heap 1024 24783 718)) ===File /home/bruno/WorkingDirectory/Community/Emacs/Gnu-Emacs/test-font-lock-infloop.el=== (defun DO-NOT-EVAL-ME () "FREEZE YOUR EMACS. DO NOT RUN IN YOUR MAIN EMACS. Run this file as follows: emacs -Q --file test-font-lock-infloop.el --eval '(progn (eval-buffer) (DO-NOT-EVAL-ME))' Then, type something between \"TYPE HERE==>>>\" and \"<<<==TYPE HERE\". Your Emacs should now hangs. GNU Emacs 24.5.1 (x86_64-pc-linux-gnu, GTK+ Version 3.14.9) But should work with any Emacs." ;; Publish our own custom function to extend the region to fontify. ;; ;; The first function can say whatever it wants (changed=t or ;; nil), it's ignored. Thus, we need to push ;; `font-lock-extend-region-wholelines' into the second position ;; to show the bug. ;; (add-hook 'font-lock-extend-region-functions (lambda () :whatever)) ;; Put a 'field property between the two "TYPE HERE" below. ;; Typing there will make Emacs hangs ... well, if not before. ;; (let ((beg (re-search-forward "TYPE HERE==>>>")) (end (re-search-forward "<<<==TYPE HERE")) ) (add-text-properties beg end '(field :hang front-sticky t)) )) (DO-NOT-EVAL-ME) ;; TYPE HERE==>>> <<<==TYPE HERE ============================================================ ------------=_1444378503-15761-1--