diff -u -r angban~1.old/src/store.c angban~1/src/store.c
--- angban~1.old/src/store.c	Wed Jul 12 23:14:24 2000
+++ angban~1/src/store.c	Mon Jul 17 09:33:24 2000
@@ -2835,7 +2835,10 @@
 
 
 	/* Prompt */
-	sprintf(out_val, "Which item do you want to examine? ");
+	if (rogue_like_commands)
+		sprintf(out_val, "Which item do you want to examine? ");
+	else
+		sprintf(out_val, "Which item do you want to look at? ");
 
 	/* Get the item number to be examined */
 	if (!get_stock(&item, out_val)) return;
@@ -2965,7 +2968,7 @@
 		}
 
 		/* Examine */
-		case 'x':
+		case 'l':
 		{
 			store_examine();
 			break;
@@ -3305,7 +3308,10 @@
 		prt(" d) Drop/Sell an item.", 23, 31);
 
 		/* Add in the eXamine option */
-		prt(" x) eXamine an item.", 22, 56);
+		if (rogue_like_commands)
+			prt(" x) eXamine an item.", 22, 56);
+		else
+			prt(" l) Look at an item.", 22, 56);
 
 		/* Prompt */
 		prt("You may: ", 21, 0);


