SOURCES: 7.2.003 (NEW), 7.2.004 (NEW), 7.2.005 (NEW), 7.2.006 (NEW), 7.2.00...

adamg adamg at pld-linux.org
Mon Sep 8 09:44:12 CEST 2008


Author: adamg                        Date: Mon Sep  8 07:44:12 2008 GMT
Module: SOURCES                       Tag: HEAD
---- Log message:
- new

---- Files affected:
SOURCES:
   7.2.003 (NONE -> 1.1)  (NEW), 7.2.004 (NONE -> 1.1)  (NEW), 7.2.005 (NONE -> 1.1)  (NEW), 7.2.006 (NONE -> 1.1)  (NEW), 7.2.007 (NONE -> 1.1)  (NEW), 7.2.008 (NONE -> 1.1)  (NEW), 7.2.009 (NONE -> 1.1)  (NEW), 7.2.010 (NONE -> 1.1)  (NEW), 7.2.011 (NONE -> 1.1)  (NEW), 7.2.012 (NONE -> 1.1)  (NEW), 7.2.013 (NONE -> 1.1)  (NEW)

---- Diffs:

================================================================
Index: SOURCES/7.2.003
diff -u /dev/null SOURCES/7.2.003:1.1
--- /dev/null	Mon Sep  8 09:44:13 2008
+++ SOURCES/7.2.003	Mon Sep  8 09:44:03 2008
@@ -0,0 +1,107 @@
+To: vim-dev at vim.org
+Subject: Patch 7.2.003
+Fcc: outbox
+From: Bram Moolenaar <Bram at moolenaar.net>
+Mime-Version: 1.0
+Content-Type: text/plain; charset=ISO-8859-1
+Content-Transfer-Encoding: 8bit
+------------
+
+Patch 7.2.003
+Problem:    Typo in translated message.  Message not translated.
+Solution:   Correct spelling. Add _(). (Dominique Pelle)
+Files:      src/spell.c, src/version.c
+
+
+*** ../vim-7.2.002/src/spell.c	Tue Jun 24 22:21:31 2008
+--- src/spell.c	Sun Aug 10 12:51:38 2008
+***************
+*** 77,83 ****
+  
+  /*
+   * Do the opposite: based on a maximum end score and a known sound score,
+!  * compute the the maximum word score that can be used.
+   */
+  #define MAXSCORE(word_score, sound_score) ((4 * word_score - sound_score) / 3)
+  
+--- 77,83 ----
+  
+  /*
+   * Do the opposite: based on a maximum end score and a known sound score,
+!  * compute the maximum word score that can be used.
+   */
+  #define MAXSCORE(word_score, sound_score) ((4 * word_score - sound_score) / 3)
+  
+***************
+*** 625,631 ****
+  /* TRUE if a word appears in the list of banned words.  */
+  #define WAS_BANNED(su, word) (!HASHITEM_EMPTY(hash_find(&su->su_banned, word)))
+  
+! /* Number of suggestions kept when cleaning up.  we need to keep more than
+   * what is displayed, because when rescore_suggestions() is called the score
+   * may change and wrong suggestions may be removed later. */
+  #define SUG_CLEAN_COUNT(su)    ((su)->su_maxcount < 130 ? 150 : (su)->su_maxcount + 20)
+--- 625,631 ----
+  /* TRUE if a word appears in the list of banned words.  */
+  #define WAS_BANNED(su, word) (!HASHITEM_EMPTY(hash_find(&su->su_banned, word)))
+  
+! /* Number of suggestions kept when cleaning up.  We need to keep more than
+   * what is displayed, because when rescore_suggestions() is called the score
+   * may change and wrong suggestions may be removed later. */
+  #define SUG_CLEAN_COUNT(su)    ((su)->su_maxcount < 130 ? 150 : (su)->su_maxcount + 20)
+***************
+*** 5980,5986 ****
+  	else if (spin->si_newprefID == 0 || spin->si_newprefID == 127)
+  	    MSG(_("Too many compound flags"));
+  	else
+! 	    MSG(_("Too many posponed prefixes and/or compound flags"));
+      }
+  
+      if (syllable != NULL)
+--- 5980,5986 ----
+  	else if (spin->si_newprefID == 0 || spin->si_newprefID == 127)
+  	    MSG(_("Too many compound flags"));
+  	else
+! 	    MSG(_("Too many postponed prefixes and/or compound flags"));
+      }
+  
+      if (syllable != NULL)
+*** ../vim-7.2.002/src/version.c	Sun Aug 17 23:43:53 2008
+--- src/version.c	Mon Aug 25 04:06:52 2008
+***************
+*** 790,796 ****
+      MSG_PUTS(_("\nRISC OS version"));
+  #endif
+  #ifdef VMS
+!     MSG_PUTS("\nOpenVMS version");
+  # ifdef HAVE_PATHDEF
+      if (*compiled_arch != NUL)
+      {
+--- 792,798 ----
+      MSG_PUTS(_("\nRISC OS version"));
+  #endif
+  #ifdef VMS
+!     MSG_PUTS(_("\nOpenVMS version"));
+  # ifdef HAVE_PATHDEF
+      if (*compiled_arch != NUL)
+      {
+*** ../vim-7.2.002/src/version.c	Sun Aug 17 23:43:53 2008
+--- src/version.c	Mon Aug 25 04:06:52 2008
+***************
+*** 678,679 ****
+--- 678,681 ----
+  {   /* Add new patch number below this line */
++ /**/
++     3,
+  /**/
+
+-- 
+I learned the customs and mannerisms of engineers by observing them, much the
+way Jane Goodall learned about the great apes, but without the hassle of
+grooming.
+				(Scott Adams - The Dilbert principle)
+
+ /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net   \\\
+///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
+\\\        download, build and distribute -- http://www.A-A-P.org        ///
+ \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///

================================================================
Index: SOURCES/7.2.004
diff -u /dev/null SOURCES/7.2.004:1.1
--- /dev/null	Mon Sep  8 09:44:13 2008
+++ SOURCES/7.2.004	Mon Sep  8 09:44:03 2008
@@ -0,0 +1,103 @@
+To: vim-dev at vim.org
+Subject: Patch 7.2.004
+Fcc: outbox
+From: Bram Moolenaar <Bram at moolenaar.net>
+Mime-Version: 1.0
+Content-Type: text/plain; charset=ISO-8859-1
+Content-Transfer-Encoding: 8bit
+------------
+
+Patch 7.2.004
+Problem:    Cscope help message is not translated.
+Solution:   Put it in _(). (Dominique Pelle)
+Files:      src/if_cscope.c, src/if_cscope.h
+
+
+*** ../vim-7.2.003/src/if_cscope.c	Tue Jun 24 23:52:06 2008
+--- src/if_cscope.c	Mon Aug 25 04:34:19 2008
+***************
+*** 74,80 ****
+      { "add",	cs_add,
+  		N_("Add a new database"),     "add file|dir [pre-path] [flags]", 0 },
+      { "find",	cs_find,
+! 		N_("Query for a pattern"),    FIND_USAGE, 1 },
+      { "help",	cs_help,
+  		N_("Show this message"),      "help", 0 },
+      { "kill",	cs_kill,
+--- 74,80 ----
+      { "add",	cs_add,
+  		N_("Add a new database"),     "add file|dir [pre-path] [flags]", 0 },
+      { "find",	cs_find,
+! 		N_("Query for a pattern"),    "find c|d|e|f|g|i|s|t name", 1 },
+      { "help",	cs_help,
+  		N_("Show this message"),      "help", 0 },
+      { "kill",	cs_kill,
+***************
+*** 1180,1186 ****
+  	(void)smsg((char_u *)_("%-5s: %-30s (Usage: %s)"),
+  				      cmdp->name, _(cmdp->help), cmdp->usage);
+  	if (strcmp(cmdp->name, "find") == 0)
+! 	    MSG_PUTS(FIND_HELP);
+  	cmdp++;
+      }
+  
+--- 1180,1195 ----
+  	(void)smsg((char_u *)_("%-5s: %-30s (Usage: %s)"),
+  				      cmdp->name, _(cmdp->help), cmdp->usage);
+  	if (strcmp(cmdp->name, "find") == 0)
+! 	    MSG_PUTS(_("\n"
+! 		       "       c: Find functions calling this function\n"
+! 		       "       d: Find functions called by this function\n"
+! 		       "       e: Find this egrep pattern\n"
+! 		       "       f: Find this file\n"
+! 		       "       g: Find this definition\n"
+! 		       "       i: Find files #including this file\n"
+! 		       "       s: Find this C symbol\n"
+! 		       "       t: Find assignments to\n"));
+! 
+  	cmdp++;
+      }
+  
+*** ../vim-7.2.003/src/if_cscope.h	Thu Sep  6 17:38:58 2007
+--- src/if_cscope.h	Mon Aug 25 04:34:17 2008
+***************
+*** 42,58 ****
+   * f 7name	Find this file
+   * i 8name	Find files #including this file
+   */
+- #define	FIND_USAGE "find c|d|e|f|g|i|s|t name"
+- #define FIND_HELP "\n\
+-        c: Find functions calling this function\n\
+-        d: Find functions called by this function\n\
+-        e: Find this egrep pattern\n\
+-        f: Find this file\n\
+-        g: Find this definition\n\
+-        i: Find files #including this file\n\
+-        s: Find this C symbol\n\
+-        t: Find assignments to\n"
+- 
+  
+  typedef struct {
+      char *  name;
+--- 42,47 ----
+*** ../vim-7.2.003/src/version.c	Mon Aug 25 04:12:38 2008
+--- src/version.c	Mon Aug 25 04:29:53 2008
+***************
+*** 678,679 ****
+--- 678,681 ----
+  {   /* Add new patch number below this line */
++ /**/
++     4,
+  /**/
+
+-- 
+If someone questions your market projections, simply point out that your
+target market is "People who are nuts" and "People who will buy any damn
+thing".  Nobody is going to tell you there aren't enough of those people
+to go around.
+				(Scott Adams - The Dilbert principle)
+
+ /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net   \\\
+///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
+\\\        download, build and distribute -- http://www.A-A-P.org        ///
+ \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///

================================================================
Index: SOURCES/7.2.005
diff -u /dev/null SOURCES/7.2.005:1.1
--- /dev/null	Mon Sep  8 09:44:14 2008
+++ SOURCES/7.2.005	Mon Sep  8 09:44:04 2008
@@ -0,0 +1,149 @@
+To: vim-dev at vim.org
+Subject: Patch 7.2.005
+Fcc: outbox
+From: Bram Moolenaar <Bram at moolenaar.net>
+Mime-Version: 1.0
+Content-Type: text/plain; charset=ISO-8859-1
+Content-Transfer-Encoding: 8bit
+------------
+
+Patch 7.2.005
+Problem:    A few problems when profiling.  Using flag pointer instead of flag
+            value.  Allocating zero bytes.  Not freeing used memory.
+Solution:   Remove wrong '&' characters.  Skip dumping when there is nothing
+            to dump.  Free used memory. (Dominique Pelle)
+Files:      src/eval.c
+
+
+*** ../vim-7.2.004/src/eval.c	Fri Aug  8 12:36:31 2008
+--- src/eval.c	Mon Aug 25 04:40:11 2008
+***************
+*** 3657,3664 ****
+  }
+  
+  /*
+!  * Return TRUE if typeval "tv" is locked: Either tha value is locked itself or
+!  * it refers to a List or Dictionary that is locked.
+   */
+      static int
+  tv_islocked(tv)
+--- 3657,3664 ----
+  }
+  
+  /*
+!  * Return TRUE if typeval "tv" is locked: Either that value is locked itself
+!  * or it refers to a List or Dictionary that is locked.
+   */
+      static int
+  tv_islocked(tv)
+***************
+*** 15838,15847 ****
+      if (res == FAIL)
+  	res = ITEM_COMPARE_FAIL;
+      else
+- 	/* return value has wrong type */
+  	res = get_tv_number_chk(&rettv, &item_compare_func_err);
+      if (item_compare_func_err)
+! 	res = ITEM_COMPARE_FAIL;
+      clear_tv(&rettv);
+      return res;
+  }
+--- 15838,15846 ----
+      if (res == FAIL)
+  	res = ITEM_COMPARE_FAIL;
+      else
+  	res = get_tv_number_chk(&rettv, &item_compare_func_err);
+      if (item_compare_func_err)
+! 	res = ITEM_COMPARE_FAIL;  /* return value has wrong type */
+      clear_tv(&rettv);
+      return res;
+  }
+***************
+*** 20590,20595 ****
+--- 20589,20597 ----
+      int		st_len = 0;
+  
+      todo = (int)func_hashtab.ht_used;
++     if (todo == 0)
++ 	return;     /* nothing to dump */
++ 
+      sorttab = (ufunc_T **)alloc((unsigned)(sizeof(ufunc_T) * todo));
+  
+      for (hi = func_hashtab.ht_array; todo > 0; ++hi)
+***************
+*** 20638,20643 ****
+--- 20640,20647 ----
+  							      prof_self_cmp);
+  	prof_sort_list(fd, sorttab, st_len, "SELF", TRUE);
+      }
++ 
++     vim_free(sorttab);
+  }
+  
+      static void
+***************
+*** 21204,21210 ****
+  	if (!fp->uf_profiling && has_profiling(FALSE, fp->uf_name, NULL))
+  	    func_do_profile(fp);
+  	if (fp->uf_profiling
+! 		       || (fc.caller != NULL && &fc.caller->func->uf_profiling))
+  	{
+  	    ++fp->uf_tm_count;
+  	    profile_start(&call_start);
+--- 21208,21214 ----
+  	if (!fp->uf_profiling && has_profiling(FALSE, fp->uf_name, NULL))
+  	    func_do_profile(fp);
+  	if (fp->uf_profiling
+! 		       || (fc.caller != NULL && fc.caller->func->uf_profiling))
+  	{
+  	    ++fp->uf_tm_count;
+  	    profile_start(&call_start);
+***************
+*** 21235,21247 ****
+  
+  #ifdef FEAT_PROFILE
+      if (do_profiling == PROF_YES && (fp->uf_profiling
+! 		    || (fc.caller != NULL && &fc.caller->func->uf_profiling)))
+      {
+  	profile_end(&call_start);
+  	profile_sub_wait(&wait_start, &call_start);
+  	profile_add(&fp->uf_tm_total, &call_start);
+  	profile_self(&fp->uf_tm_self, &call_start, &fp->uf_tm_children);
+! 	if (fc.caller != NULL && &fc.caller->func->uf_profiling)
+  	{
+  	    profile_add(&fc.caller->func->uf_tm_children, &call_start);
+  	    profile_add(&fc.caller->func->uf_tml_children, &call_start);
+--- 21239,21251 ----
+  
+  #ifdef FEAT_PROFILE
+      if (do_profiling == PROF_YES && (fp->uf_profiling
+! 		    || (fc.caller != NULL && fc.caller->func->uf_profiling)))
+      {
+  	profile_end(&call_start);
+  	profile_sub_wait(&wait_start, &call_start);
+  	profile_add(&fp->uf_tm_total, &call_start);
+  	profile_self(&fp->uf_tm_self, &call_start, &fp->uf_tm_children);
+! 	if (fc.caller != NULL && fc.caller->func->uf_profiling)
+  	{
+  	    profile_add(&fc.caller->func->uf_tm_children, &call_start);
+  	    profile_add(&fc.caller->func->uf_tml_children, &call_start);
+*** ../vim-7.2.004/src/version.c	Mon Aug 25 04:35:13 2008
+--- src/version.c	Mon Aug 25 04:46:44 2008
+***************
+*** 678,679 ****
+--- 678,681 ----
+  {   /* Add new patch number below this line */
++ /**/
++     5,
+  /**/
+
+-- 
+The process for understanding customers primarily involves sitting around with
+other marketing people and talking about what you would to if you were dumb
+enough to be a customer.
+				(Scott Adams - The Dilbert principle)
+
+ /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net   \\\
+///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
+\\\        download, build and distribute -- http://www.A-A-P.org        ///
+ \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///

================================================================
Index: SOURCES/7.2.006
diff -u /dev/null SOURCES/7.2.006:1.1
--- /dev/null	Mon Sep  8 09:44:14 2008
+++ SOURCES/7.2.006	Mon Sep  8 09:44:04 2008
@@ -0,0 +1,50 @@
+To: vim-dev at vim.org
+Subject: Patch 7.2.006
+Fcc: outbox
+From: Bram Moolenaar <Bram at moolenaar.net>
+Mime-Version: 1.0
+Content-Type: text/plain; charset=ISO-8859-1
+Content-Transfer-Encoding: 8bit
+------------
+
+Patch 7.2.006
+Problem:    HTML files are not recognized by contents.
+Solution:   Add a rule to the scripts file. (Nico Weber)
+Files:      runtime/scripts.vim
+
+
+*** ../vim-7.2.005/runtime/scripts.vim	Sat Aug  9 19:37:09 2008
+--- runtime/scripts.vim	Sat Aug 16 04:05:34 2008
+***************
+*** 234,239 ****
+--- 234,243 ----
+    elseif s:line1 =~ '\<DTD\s\+XHTML\s'
+      set ft=xhtml
+  
++     " HTML (e.g.: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN")
++   elseif s:line1 =~? '\<DOCTYPE\s\+html\>'
++     set ft=html
++ 
+      " PDF
+    elseif s:line1 =~ '^%PDF-'
+      set ft=pdf
+*** ../vim-7.2.005/src/version.c	Mon Aug 25 04:48:21 2008
+--- src/version.c	Mon Aug 25 05:02:34 2008
+***************
+*** 678,679 ****
+--- 678,681 ----
+  {   /* Add new patch number below this line */
++ /**/
++     6,
+  /**/
+
+-- 
+Never enter the boss's office unless it's absolutely necessary.  Every boss
+saves one corner of the desk for useless assignments that are doled out like
+Halloween candy to each visitor.
+				(Scott Adams - The Dilbert principle)
+
+ /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net   \\\
+///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
+\\\        download, build and distribute -- http://www.A-A-P.org        ///
+ \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///

================================================================
Index: SOURCES/7.2.007
diff -u /dev/null SOURCES/7.2.007:1.1
--- /dev/null	Mon Sep  8 09:44:15 2008
+++ SOURCES/7.2.007	Mon Sep  8 09:44:04 2008
@@ -0,0 +1,493 @@
+To: vim-dev at vim.org
+Subject: Patch 7.2.007 (extra)
+Fcc: outbox
+From: Bram Moolenaar <Bram at moolenaar.net>
+Mime-Version: 1.0
+Content-Type: text/plain; charset=ISO-8859-1
+Content-Transfer-Encoding: 8bit
+------------
+
+Patch 7.2.007 (extra)
+Problem:    Minor issues for VMS.
+Solution:   Minor fixes for VMS.  Add float support. (Zoltan Arpadffy)
+Files:	    runtime/doc/os_vms.txt, src/os_vms_conf.h, src/Make_vms.mms,
+	    src/testdir/Make_vms.mms, src/testdir/test30.in,
+	    src/testdir/test54.in
+
+
+*** ../vim-7.2.006/runtime/doc/os_vms.txt	Sat Aug  9 19:36:50 2008
+--- runtime/doc/os_vms.txt	Tue Aug 19 06:29:31 2008
+***************
+*** 1,4 ****
+! *os_vms.txt*    For Vim version 7.2.  Last change: 2006 Nov 18
+  
+  
+  		  VIM REFERENCE MANUAL
+--- 1,4 ----
+! *os_vms.txt*    For Vim version 7.2.  Last change: 2008 Aug 19
+  
+  
+  		  VIM REFERENCE MANUAL
+***************
+*** 312,318 ****
+  
+  8. Useful notes						*vms-notes*
+  
+! 8.1 backspace/delete
+  8.2 Filters
+  8.3 VMS file version numbers
+  8.4 Directory conversion
+--- 312,318 ----
+  
+  8. Useful notes						*vms-notes*
+  
+! 8.1 Backspace/delete
+  8.2 Filters
+  8.3 VMS file version numbers
+  8.4 Directory conversion
+***************
+*** 326,333 ****
+  8.12 diff-mode
+  8.13 Allow '$' in C keywords
+  8.14 VIMTUTOR for beginners
+  
+! 8.1 backspace/delete
+  
+  There are backspace/delete key inconsistencies with VMS.
+  :fixdel doesn't do the trick, but the solution is: >
+--- 326,335 ----
+  8.12 diff-mode
+  8.13 Allow '$' in C keywords
+  8.14 VIMTUTOR for beginners
++ 8.15 Slow start in console mode issue 
++ 8.16 Common VIM directory - different architectures 
+  
+! 8.1 Backspace/delete
+  
+  There are backspace/delete key inconsistencies with VMS.
+  :fixdel doesn't do the trick, but the solution is: >
+***************
+*** 663,674 ****
+  
+  (Thomas.R.Wyant III, Vim 6.1)
+  
+  ==============================================================================
+  
+  9. VMS related changes					*vms-changes*
+  
+! Version 7
+  - Improved low level char input (affects just console mode)
+  
+  Version 6.4 (2005 Oct 15)
+  - GTKLIB and Vim build on IA64
+--- 665,794 ----
+  
+  (Thomas.R.Wyant III, Vim 6.1)
+  
++ 8.14 Slow start in console mode issue
++ 
++ As GUI/GTK Vim works equally well in console mode, many administartors
++ deploy those executables system wide.
++ Unfortunately, on a remote slow connections GUI/GTK executables behave rather
++ slow when user wants to run Vim just in the console mode - because of X environment detection timeout.
++ 
++ Luckily, there is a simple solution for that. Administrators need to deploy
++ both GUI/GTK build and just console build executables, like below: >
++ 
++     |- vim72
++     |----- doc
++     |----- syntax        
++        vimrc    (system rc files)
++        gvimrc
++        gvim.exe (the remaned GUI or GTK built vim.exe)      
++        vim.exe  (the console only executable) 
++ 
++ Define system symbols like below in for ex in LOGIN.COM or SYLOGIN.COM: >
++ 
++ 	$ define/nolog VIM RF10:[UTIL.VIM72] ! where you VIM directory is
++ 	$ vi*m  :== mcr VIM:VIM.EXE
++ 	$ gvi*m :== mcr VIM:GVIM.EXE
++ 	$ ! or you can try to spawn with
++ 	$ gv*im :== spawn/nowait/input=NLA0 mcr VIM:GVIM.EXE -g -GEOMETRY 80x40
++ 
++ 
++ Like this, users that do not have X environment and want to use Vim just in 
++ console mode can avoid performance problems.
++ 
++ (Zoltan Arpadffy, Vim 7.2)
++ 
++ 8.15 Common VIM directory - different architectures
++ 
++ In a cluster that contains nodes with different architectures like below:
++ 
++ $show cluster
++ View of Cluster from system ID 11655  node: TOR                                                                     18-AUG-2008 11:58:31
++ +---------------------------------+
++ ¦        SYSTEMS        ¦ MEMBERS ¦
++ +-----------------------+---------¦
++ ¦  NODE  ¦   SOFTWARE   ¦  STATUS ¦
++ +--------+--------------+---------¦
++ ¦ TOR    ¦ VMS V7.3-2   ¦ MEMBER  ¦
++ ¦ TITAN2 ¦ VMS V8.3     ¦ MEMBER  ¦
++ ¦ ODIN   ¦ VMS V7.3-2   ¦ MEMBER  ¦
++ +---------------------------------+
++ 
++ It is convinient to have a common VIM directory but execute different
++ executables. 
++ There are more solutions for this problem:
++ 
++ solution 1. all executables in the same directory with different names
++ This is easily done with the following script that can be added
++ to the login.com or sylogin.com: >
++ 
++ 	$ if f$getsyi("NODE_HWTYPE") .eqs. "VAX"
++ 	$ then
++ 	$       say "VAX platform"
++ 	$       vi*m:== mcr vim:VIM.EXE_VAX
++ 	$ endif
++ 	$ if f$getsyi("NODE_HWTYPE") .eqs. "ALPH"
++ 	$ then
++ 	$       say "ALPHA platform"
++ 	$       vi*m :== mcr vim:VIM.EXE_AXP
++ 	$ endif
++ 	$ if f$getsyi("ARCH_NAME") .eqs. "IA64"
++ 	$ then
++ 	$      say "IA64 platform"
++ 	$      vi*m :== mcr vim:VIM.EXE_IA64
++ 	$ endif
++ 
<<Diff was trimmed, longer than 597 lines>>


More information about the pld-cvs-commit mailing list