From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Luc Teirlinck Newsgroups: gmane.emacs.devel Subject: defconst in tpu-edt.el Date: Sun, 14 Nov 2004 12:50:23 -0600 (CST) Message-ID: <200411141850.iAEIoNx24269@raven.dms.auburn.edu> NNTP-Posting-Host: deer.gmane.org X-Trace: sea.gmane.org 1100458315 10161 80.91.229.6 (14 Nov 2004 18:51:55 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 14 Nov 2004 18:51:55 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Nov 14 19:51:46 2004 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1CTPTW-0008Ne-00 for ; Sun, 14 Nov 2004 19:51:46 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1CTPcA-0005SZ-V0 for ged-emacs-devel@m.gmane.org; Sun, 14 Nov 2004 14:00:42 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1CTPc1-0005SU-2b for emacs-devel@gnu.org; Sun, 14 Nov 2004 14:00:33 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1CTPc0-0005SI-Mh for emacs-devel@gnu.org; Sun, 14 Nov 2004 14:00:32 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1CTPc0-0005SF-Jb for emacs-devel@gnu.org; Sun, 14 Nov 2004 14:00:32 -0500 Original-Received: from [131.204.53.104] (helo=manatee.dms.auburn.edu) by monty-python.gnu.org with esmtp (Exim 4.34) id 1CTPSx-00064Q-Ob for emacs-devel@gnu.org; Sun, 14 Nov 2004 13:51:11 -0500 Original-Received: from raven.dms.auburn.edu (raven.dms.auburn.edu [131.204.53.29]) by manatee.dms.auburn.edu (8.12.10/8.12.10) with ESMTP id iAEIpBFu010690; Sun, 14 Nov 2004 12:51:11 -0600 (CST) Original-Received: (from teirllm@localhost) by raven.dms.auburn.edu (8.11.7p1+Sun/8.11.7) id iAEIoNx24269; Sun, 14 Nov 2004 12:50:23 -0600 (CST) X-Authentication-Warning: raven.dms.auburn.edu: teirllm set sender to teirllm@dms.auburn.edu using -f Original-To: Rob Riepel X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:29817 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:29817 The patch below changes the two defconst's that produce compiler warnings in tpu-edt to defvars. The defconsts for tpu-version, tpu-emacs19-p and tpu-lucid-emacs19-p might be legitimate. I believe that, in addition to the two defconst's changed in the patch, the defconst's for tpu-help-keypad-map and tpu-help-text are dubious, but I hope that the author can take a look at those two. ===File ~/tpu-edt.el-diff=================================== *** tpu-edt.el 29 Feb 2004 17:58:53 -0600 1.36 --- tpu-edt.el 14 Nov 2004 09:55:29 -0600 *************** *** 1706,1714 **** ;;; ;;; Movement by word ;;; ! (defconst tpu-word-separator-list '() "List of additional word separators.") ! (defconst tpu-skip-chars "^ \t" "Characters to skip when moving by word. Additional word separators are added to this string.") --- 1706,1714 ---- ;;; ;;; Movement by word ;;; ! (defvar tpu-word-separator-list '() "List of additional word separators.") ! (defvar tpu-skip-chars "^ \t" "Characters to skip when moving by word. Additional word separators are added to this string.") ============================================================