Revision: 29380
          http://sourceforge.net/p/bibdesk/svn/29380
Author:   hofman
Date:     2025-07-28 09:27:31 +0000 (Mon, 28 Jul 2025)
Log Message:
-----------
= instead or ==

Modified Paths:
--------------
    trunk/bibdesk/BDSKEditor.m

Modified: trunk/bibdesk/BDSKEditor.m
===================================================================
--- trunk/bibdesk/BDSKEditor.m  2025-07-28 09:16:11 UTC (rev 29379)
+++ trunk/bibdesk/BDSKEditor.m  2025-07-28 09:27:31 UTC (rev 29380)
@@ -2102,7 +2102,7 @@
         // check for fragile invalid characters, as the formatter doesn't do 
this
         if (r.location != NSNotFound && editorFlags.allowFragileCharacters == 
NO) {
             
-            isValid == NO;
+            isValid = NO;
             if (error) {
                 err = [NSError mutableLocalErrorWithCode:kBDSKFailedToCommit 
localizedDescription:NSLocalizedString(@"Invalid Value", @"Message in alert 
dialog when entering an invalid value")];
                 [err setValue:NSLocalizedString(@"The cite key you entered 
contains characters that could be invalid in TeX. Do you want to keep them or 
remove them?", @"Informative text in alert dialog") 
forKey:NSLocalizedRecoverySuggestionErrorKey];
@@ -2141,7 +2141,7 @@
                 // check whether we won't get a crossref chain
                 BDSKCrossrefError errorCode = [publication canSetCrossref:obj];
                 if (errorCode != BDSKNoCrossrefError) {
-                    isValid == NO;
+                    isValid = NO;
                     if (error) {
                         if (errorCode == BDSKSelfCrossrefError)
                             message = NSLocalizedString(@"An item cannot cross 
reference to itself.", @"Informative text in alert dialog");

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.



_______________________________________________
Bibdesk-commit mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/bibdesk-commit

Reply via email to